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.OpenpipelineV2UsersessionsPipelinesdownloads all existing OpenPipeline definitions for user sessions pipelines
The full documentation of the export feature is available here.
Resource Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as dynatrace from "@pulumiverse/dynatrace";
const max_pipeline = new dynatrace.OpenpipelineV2UsersessionsPipelines("max-pipeline", {
displayName: "Warning pipeline",
customId: "pipeline_Warning_pipeline_2773_tf_#name#",
metadataList: {
metadatas: [{
entryKey: "environment",
entryValue: "production",
}],
},
processing: {
processors: {
processors: [
{
type: "drop",
id: "processor_Drop_unnecessary_records_3802",
description: "Drop unnecessary records",
matcher: "not matchesPhrase(record.name, \"Warning\")",
enabled: true,
},
{
type: "fieldsAdd",
id: "processor_Add_warning_flag_5434",
description: "Add warning flag",
matcher: "matchesPhrase(record.name, \"Warning\")",
sampleData: `{
"record.name": "Warning record"
}`,
fieldsAdd: {
fields: {
fields: [{
name: "is_warning",
value: "true",
}],
},
},
enabled: true,
},
{
type: "fieldsRemove",
id: "processor_Remove_details_field_8539",
description: "Remove details field",
sampleData: `{
"record.name": "Warning",
"record.details": "some record details"
}`,
matcher: "isNotNull(record.details)",
fieldsRemove: {
fields: ["record.details"],
},
enabled: true,
},
{
type: "fieldsRename",
id: "processor_Rename_name_to_title_8530",
description: "Rename name to title",
sampleData: `{
"record.name": "Warning"
}`,
matcher: "true",
fieldsRename: {
fields: {
fields: [{
fromName: "record.name",
toName: "record.title",
}],
},
},
enabled: true,
},
{
type: "dql",
id: "processor_Combine_title_and_summary_to_name_8808",
description: "Combine title and summary to name",
sampleData: `{
"record.title": "Warning",
"record.summary": "Request failed"
}`,
matcher: "true",
dql: {
script: "fieldsAdd record.name = concat(record.title, \" - \", record.summary)",
},
enabled: true,
},
],
},
},
davis: {
processors: {
processors: [{
type: "davis",
id: "processor_Create_warning_event_8226",
description: "Create warning event",
matcher: "true",
davis: {
properties: {
properties: [
{
key: "event.type",
value: "CUSTOM_ALERT",
},
{
key: "event.name",
value: "Warning detected",
},
{
key: "event.description",
value: "Warning: {dims:record.summary}",
},
],
},
},
enabled: true,
}],
},
},
metricExtraction: {
processors: {
processors: [
{
type: "counterMetric",
id: "processor_Count_warning_events_6392",
description: "Count warnings",
matcher: "true",
counterMetric: {
metricKey: "warning.count",
dimensions: {
dimensions: [
{
extractionType: "field",
strategy: "equals",
sourceFieldName: "dt.cost.costcenter",
},
{
extractionType: "field",
strategy: "equals",
sourceFieldName: "dt.cost.product",
},
{
extractionType: "field",
strategy: "equals",
sourceFieldName: "dt.security_context",
},
{
extractionType: "field",
strategy: "equals",
sourceFieldName: "record.category",
destinationFieldName: "warning_category",
},
],
},
},
enabled: true,
},
{
type: "valueMetric",
id: "processor_Warning_timeout_1990",
description: "Warning timeout",
matcher: "true",
valueMetric: {
metricKey: "warning.timeout",
field: "recording.timeout_in_min",
defaultValue: "60",
dimensions: {
dimensions: [
{
extractionType: "field",
strategy: "equals",
sourceFieldName: "dt.cost.costcenter",
},
{
extractionType: "field",
strategy: "equals",
sourceFieldName: "dt.cost.product",
},
{
extractionType: "field",
strategy: "equals",
sourceFieldName: "dt.security_context",
},
{
extractionType: "field",
strategy: "equals",
sourceFieldName: "record.category",
destinationFieldName: "warning_category",
},
],
},
},
enabled: true,
},
],
},
},
securityContext: {
processors: {
processors: [
{
type: "securityContext",
id: "processor_Use_dt.security_context_if_set_1080",
description: "Use dt.security_context if set",
matcher: "isNotNull(dt.security_context)",
securityContext: {
value: {
type: "field",
field: {
sourceFieldName: "dt.security_context",
},
},
},
enabled: true,
},
{
type: "securityContext",
id: "processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465",
description: "Assign warnings to ACME teams if no context set",
matcher: "isNull(dt.security_context)",
securityContext: {
value: {
type: "multiValueConstant",
multiValueConstants: [
"ACME1",
"ACME2",
],
},
},
enabled: true,
},
],
},
},
storage: {
processors: {
processors: [{
type: "bucketAssignment",
id: "processor_Add_to_default_bucket_5010",
description: "Add to default bucket",
matcher: "true",
bucketAssignment: {
bucketName: "default_events",
},
enabled: true,
}],
},
},
});
import pulumi
import pulumiverse_dynatrace as dynatrace
max_pipeline = dynatrace.OpenpipelineV2UsersessionsPipelines("max-pipeline",
display_name="Warning pipeline",
custom_id="pipeline_Warning_pipeline_2773_tf_#name#",
metadata_list={
"metadatas": [{
"entry_key": "environment",
"entry_value": "production",
}],
},
processing={
"processors": {
"processors": [
{
"type": "drop",
"id": "processor_Drop_unnecessary_records_3802",
"description": "Drop unnecessary records",
"matcher": "not matchesPhrase(record.name, \"Warning\")",
"enabled": True,
},
{
"type": "fieldsAdd",
"id": "processor_Add_warning_flag_5434",
"description": "Add warning flag",
"matcher": "matchesPhrase(record.name, \"Warning\")",
"sample_data": """{
"record.name": "Warning record"
}""",
"fields_add": {
"fields": {
"fields": [{
"name": "is_warning",
"value": "true",
}],
},
},
"enabled": True,
},
{
"type": "fieldsRemove",
"id": "processor_Remove_details_field_8539",
"description": "Remove details field",
"sample_data": """{
"record.name": "Warning",
"record.details": "some record details"
}""",
"matcher": "isNotNull(record.details)",
"fields_remove": {
"fields": ["record.details"],
},
"enabled": True,
},
{
"type": "fieldsRename",
"id": "processor_Rename_name_to_title_8530",
"description": "Rename name to title",
"sample_data": """{
"record.name": "Warning"
}""",
"matcher": "true",
"fields_rename": {
"fields": {
"fields": [{
"from_name": "record.name",
"to_name": "record.title",
}],
},
},
"enabled": True,
},
{
"type": "dql",
"id": "processor_Combine_title_and_summary_to_name_8808",
"description": "Combine title and summary to name",
"sample_data": """{
"record.title": "Warning",
"record.summary": "Request failed"
}""",
"matcher": "true",
"dql": {
"script": "fieldsAdd record.name = concat(record.title, \" - \", record.summary)",
},
"enabled": True,
},
],
},
},
davis={
"processors": {
"processors": [{
"type": "davis",
"id": "processor_Create_warning_event_8226",
"description": "Create warning event",
"matcher": "true",
"davis": {
"properties": {
"properties": [
{
"key": "event.type",
"value": "CUSTOM_ALERT",
},
{
"key": "event.name",
"value": "Warning detected",
},
{
"key": "event.description",
"value": "Warning: {dims:record.summary}",
},
],
},
},
"enabled": True,
}],
},
},
metric_extraction={
"processors": {
"processors": [
{
"type": "counterMetric",
"id": "processor_Count_warning_events_6392",
"description": "Count warnings",
"matcher": "true",
"counter_metric": {
"metric_key": "warning.count",
"dimensions": {
"dimensions": [
{
"extraction_type": "field",
"strategy": "equals",
"source_field_name": "dt.cost.costcenter",
},
{
"extraction_type": "field",
"strategy": "equals",
"source_field_name": "dt.cost.product",
},
{
"extraction_type": "field",
"strategy": "equals",
"source_field_name": "dt.security_context",
},
{
"extraction_type": "field",
"strategy": "equals",
"source_field_name": "record.category",
"destination_field_name": "warning_category",
},
],
},
},
"enabled": True,
},
{
"type": "valueMetric",
"id": "processor_Warning_timeout_1990",
"description": "Warning timeout",
"matcher": "true",
"value_metric": {
"metric_key": "warning.timeout",
"field": "recording.timeout_in_min",
"default_value": "60",
"dimensions": {
"dimensions": [
{
"extraction_type": "field",
"strategy": "equals",
"source_field_name": "dt.cost.costcenter",
},
{
"extraction_type": "field",
"strategy": "equals",
"source_field_name": "dt.cost.product",
},
{
"extraction_type": "field",
"strategy": "equals",
"source_field_name": "dt.security_context",
},
{
"extraction_type": "field",
"strategy": "equals",
"source_field_name": "record.category",
"destination_field_name": "warning_category",
},
],
},
},
"enabled": True,
},
],
},
},
security_context={
"processors": {
"processors": [
{
"type": "securityContext",
"id": "processor_Use_dt.security_context_if_set_1080",
"description": "Use dt.security_context if set",
"matcher": "isNotNull(dt.security_context)",
"security_context": {
"value": {
"type": "field",
"field": {
"source_field_name": "dt.security_context",
},
},
},
"enabled": True,
},
{
"type": "securityContext",
"id": "processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465",
"description": "Assign warnings to ACME teams if no context set",
"matcher": "isNull(dt.security_context)",
"security_context": {
"value": {
"type": "multiValueConstant",
"multi_value_constants": [
"ACME1",
"ACME2",
],
},
},
"enabled": True,
},
],
},
},
storage={
"processors": {
"processors": [{
"type": "bucketAssignment",
"id": "processor_Add_to_default_bucket_5010",
"description": "Add to default bucket",
"matcher": "true",
"bucket_assignment": {
"bucket_name": "default_events",
},
"enabled": True,
}],
},
})
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-dynatrace/sdk/go/dynatrace"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := dynatrace.NewOpenpipelineV2UsersessionsPipelines(ctx, "max-pipeline", &dynatrace.OpenpipelineV2UsersessionsPipelinesArgs{
DisplayName: pulumi.String("Warning pipeline"),
CustomId: pulumi.String("pipeline_Warning_pipeline_2773_tf_#name#"),
MetadataList: &dynatrace.OpenpipelineV2UsersessionsPipelinesMetadataListArgs{
Metadatas: dynatrace.OpenpipelineV2UsersessionsPipelinesMetadataListMetadataArray{
&dynatrace.OpenpipelineV2UsersessionsPipelinesMetadataListMetadataArgs{
EntryKey: pulumi.String("environment"),
EntryValue: pulumi.String("production"),
},
},
},
Processing: &dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingArgs{
Processors: &dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsArgs{
Processors: dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArray{
&dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs{
Type: pulumi.String("drop"),
Id: pulumi.String("processor_Drop_unnecessary_records_3802"),
Description: pulumi.String("Drop unnecessary records"),
Matcher: pulumi.String("not matchesPhrase(record.name, \"Warning\")"),
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs{
Type: pulumi.String("fieldsAdd"),
Id: pulumi.String("processor_Add_warning_flag_5434"),
Description: pulumi.String("Add warning flag"),
Matcher: pulumi.String("matchesPhrase(record.name, \"Warning\")"),
SampleData: pulumi.String("{\n \"record.name\": \"Warning record\" \n}"),
FieldsAdd: &dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddArgs{
Fields: &dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs{
Fields: dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArray{
&dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs{
Name: pulumi.String("is_warning"),
Value: pulumi.String("true"),
},
},
},
},
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs{
Type: pulumi.String("fieldsRemove"),
Id: pulumi.String("processor_Remove_details_field_8539"),
Description: pulumi.String("Remove details field"),
SampleData: pulumi.String("{\n \"record.name\": \"Warning\",\n \"record.details\": \"some record details\"\n}"),
Matcher: pulumi.String("isNotNull(record.details)"),
FieldsRemove: &dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs{
Fields: pulumi.StringArray{
pulumi.String("record.details"),
},
},
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs{
Type: pulumi.String("fieldsRename"),
Id: pulumi.String("processor_Rename_name_to_title_8530"),
Description: pulumi.String("Rename name to title"),
SampleData: pulumi.String("{\n \"record.name\": \"Warning\"\n}"),
Matcher: pulumi.String("true"),
FieldsRename: &dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameArgs{
Fields: &dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs{
Fields: dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArray{
&dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs{
FromName: pulumi.String("record.name"),
ToName: pulumi.String("record.title"),
},
},
},
},
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs{
Type: pulumi.String("dql"),
Id: pulumi.String("processor_Combine_title_and_summary_to_name_8808"),
Description: pulumi.String("Combine title and summary to name"),
SampleData: pulumi.String("{\n \"record.title\": \"Warning\",\n \"record.summary\": \"Request failed\"\n}"),
Matcher: pulumi.String("true"),
Dql: &dynatrace.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDqlArgs{
Script: pulumi.String("fieldsAdd record.name = concat(record.title, \" - \", record.summary)"),
},
Enabled: pulumi.Bool(true),
},
},
},
},
Davis: &dynatrace.OpenpipelineV2UsersessionsPipelinesDavisArgs{
Processors: &dynatrace.OpenpipelineV2UsersessionsPipelinesDavisProcessorsArgs{
Processors: dynatrace.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorArray{
&dynatrace.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorArgs{
Type: pulumi.String("davis"),
Id: pulumi.String("processor_Create_warning_event_8226"),
Description: pulumi.String("Create warning event"),
Matcher: pulumi.String("true"),
Davis: &dynatrace.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisArgs{
Properties: &dynatrace.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesArgs{
Properties: dynatrace.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArray{
&dynatrace.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs{
Key: pulumi.String("event.type"),
Value: pulumi.String("CUSTOM_ALERT"),
},
&dynatrace.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs{
Key: pulumi.String("event.name"),
Value: pulumi.String("Warning detected"),
},
&dynatrace.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs{
Key: pulumi.String("event.description"),
Value: pulumi.String("Warning: {dims:record.summary}"),
},
},
},
},
Enabled: pulumi.Bool(true),
},
},
},
},
MetricExtraction: &dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionArgs{
Processors: &dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsArgs{
Processors: dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorArray{
&dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorArgs{
Type: pulumi.String("counterMetric"),
Id: pulumi.String("processor_Count_warning_events_6392"),
Description: pulumi.String("Count warnings"),
Matcher: pulumi.String("true"),
CounterMetric: &dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs{
MetricKey: pulumi.String("warning.count"),
Dimensions: &dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs{
Dimensions: dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArray{
&dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("dt.cost.costcenter"),
},
&dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("dt.cost.product"),
},
&dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("dt.security_context"),
},
&dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("record.category"),
DestinationFieldName: pulumi.String("warning_category"),
},
},
},
},
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorArgs{
Type: pulumi.String("valueMetric"),
Id: pulumi.String("processor_Warning_timeout_1990"),
Description: pulumi.String("Warning timeout"),
Matcher: pulumi.String("true"),
ValueMetric: &dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs{
MetricKey: pulumi.String("warning.timeout"),
Field: pulumi.String("recording.timeout_in_min"),
DefaultValue: pulumi.String("60"),
Dimensions: &dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs{
Dimensions: dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArray{
&dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("dt.cost.costcenter"),
},
&dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("dt.cost.product"),
},
&dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("dt.security_context"),
},
&dynatrace.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs{
ExtractionType: pulumi.String("field"),
Strategy: pulumi.String("equals"),
SourceFieldName: pulumi.String("record.category"),
DestinationFieldName: pulumi.String("warning_category"),
},
},
},
},
Enabled: pulumi.Bool(true),
},
},
},
},
SecurityContext: &dynatrace.OpenpipelineV2UsersessionsPipelinesSecurityContextArgs{
Processors: &dynatrace.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsArgs{
Processors: dynatrace.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorArray{
&dynatrace.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorArgs{
Type: pulumi.String("securityContext"),
Id: pulumi.String("processor_Use_dt.security_context_if_set_1080"),
Description: pulumi.String("Use dt.security_context if set"),
Matcher: pulumi.String("isNotNull(dt.security_context)"),
SecurityContext: &dynatrace.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs{
Value: &dynatrace.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs{
Type: pulumi.String("field"),
Field: &dynatrace.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs{
SourceFieldName: pulumi.String("dt.security_context"),
},
},
},
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorArgs{
Type: pulumi.String("securityContext"),
Id: pulumi.String("processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465"),
Description: pulumi.String("Assign warnings to ACME teams if no context set"),
Matcher: pulumi.String("isNull(dt.security_context)"),
SecurityContext: &dynatrace.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs{
Value: &dynatrace.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs{
Type: pulumi.String("multiValueConstant"),
MultiValueConstants: pulumi.StringArray{
pulumi.String("ACME1"),
pulumi.String("ACME2"),
},
},
},
Enabled: pulumi.Bool(true),
},
},
},
},
Storage: &dynatrace.OpenpipelineV2UsersessionsPipelinesStorageArgs{
Processors: &dynatrace.OpenpipelineV2UsersessionsPipelinesStorageProcessorsArgs{
Processors: dynatrace.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorArray{
&dynatrace.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorArgs{
Type: pulumi.String("bucketAssignment"),
Id: pulumi.String("processor_Add_to_default_bucket_5010"),
Description: pulumi.String("Add to default bucket"),
Matcher: pulumi.String("true"),
BucketAssignment: &dynatrace.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBucketAssignmentArgs{
BucketName: pulumi.String("default_events"),
},
Enabled: pulumi.Bool(true),
},
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Dynatrace = Pulumiverse.Dynatrace;
return await Deployment.RunAsync(() =>
{
var max_pipeline = new Dynatrace.OpenpipelineV2UsersessionsPipelines("max-pipeline", new()
{
DisplayName = "Warning pipeline",
CustomId = "pipeline_Warning_pipeline_2773_tf_#name#",
MetadataList = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetadataListArgs
{
Metadatas = new[]
{
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetadataListMetadataArgs
{
EntryKey = "environment",
EntryValue = "production",
},
},
},
Processing = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingArgs
{
Processors = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsArgs
{
Processors = new[]
{
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs
{
Type = "drop",
Id = "processor_Drop_unnecessary_records_3802",
Description = "Drop unnecessary records",
Matcher = "not matchesPhrase(record.name, \"Warning\")",
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs
{
Type = "fieldsAdd",
Id = "processor_Add_warning_flag_5434",
Description = "Add warning flag",
Matcher = "matchesPhrase(record.name, \"Warning\")",
SampleData = @"{
""record.name"": ""Warning record""
}",
FieldsAdd = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddArgs
{
Fields = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs
{
Fields = new[]
{
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs
{
Name = "is_warning",
Value = "true",
},
},
},
},
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs
{
Type = "fieldsRemove",
Id = "processor_Remove_details_field_8539",
Description = "Remove details field",
SampleData = @"{
""record.name"": ""Warning"",
""record.details"": ""some record details""
}",
Matcher = "isNotNull(record.details)",
FieldsRemove = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs
{
Fields = new[]
{
"record.details",
},
},
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs
{
Type = "fieldsRename",
Id = "processor_Rename_name_to_title_8530",
Description = "Rename name to title",
SampleData = @"{
""record.name"": ""Warning""
}",
Matcher = "true",
FieldsRename = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameArgs
{
Fields = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs
{
Fields = new[]
{
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs
{
FromName = "record.name",
ToName = "record.title",
},
},
},
},
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs
{
Type = "dql",
Id = "processor_Combine_title_and_summary_to_name_8808",
Description = "Combine title and summary to name",
SampleData = @"{
""record.title"": ""Warning"",
""record.summary"": ""Request failed""
}",
Matcher = "true",
Dql = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDqlArgs
{
Script = "fieldsAdd record.name = concat(record.title, \" - \", record.summary)",
},
Enabled = true,
},
},
},
},
Davis = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisArgs
{
Processors = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsArgs
{
Processors = new[]
{
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorArgs
{
Type = "davis",
Id = "processor_Create_warning_event_8226",
Description = "Create warning event",
Matcher = "true",
Davis = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisArgs
{
Properties = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesArgs
{
Properties = new[]
{
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs
{
Key = "event.type",
Value = "CUSTOM_ALERT",
},
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs
{
Key = "event.name",
Value = "Warning detected",
},
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs
{
Key = "event.description",
Value = "Warning: {dims:record.summary}",
},
},
},
},
Enabled = true,
},
},
},
},
MetricExtraction = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionArgs
{
Processors = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsArgs
{
Processors = new[]
{
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorArgs
{
Type = "counterMetric",
Id = "processor_Count_warning_events_6392",
Description = "Count warnings",
Matcher = "true",
CounterMetric = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs
{
MetricKey = "warning.count",
Dimensions = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs
{
Dimensions = new[]
{
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "dt.cost.costcenter",
},
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "dt.cost.product",
},
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "dt.security_context",
},
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "record.category",
DestinationFieldName = "warning_category",
},
},
},
},
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorArgs
{
Type = "valueMetric",
Id = "processor_Warning_timeout_1990",
Description = "Warning timeout",
Matcher = "true",
ValueMetric = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs
{
MetricKey = "warning.timeout",
Field = "recording.timeout_in_min",
DefaultValue = "60",
Dimensions = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs
{
Dimensions = new[]
{
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "dt.cost.costcenter",
},
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "dt.cost.product",
},
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "dt.security_context",
},
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
{
ExtractionType = "field",
Strategy = "equals",
SourceFieldName = "record.category",
DestinationFieldName = "warning_category",
},
},
},
},
Enabled = true,
},
},
},
},
SecurityContext = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextArgs
{
Processors = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsArgs
{
Processors = new[]
{
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorArgs
{
Type = "securityContext",
Id = "processor_Use_dt.security_context_if_set_1080",
Description = "Use dt.security_context if set",
Matcher = "isNotNull(dt.security_context)",
SecurityContext = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs
{
Value = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs
{
Type = "field",
Field = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs
{
SourceFieldName = "dt.security_context",
},
},
},
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorArgs
{
Type = "securityContext",
Id = "processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465",
Description = "Assign warnings to ACME teams if no context set",
Matcher = "isNull(dt.security_context)",
SecurityContext = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs
{
Value = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs
{
Type = "multiValueConstant",
MultiValueConstants = new[]
{
"ACME1",
"ACME2",
},
},
},
Enabled = true,
},
},
},
},
Storage = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageArgs
{
Processors = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsArgs
{
Processors = new[]
{
new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorArgs
{
Type = "bucketAssignment",
Id = "processor_Add_to_default_bucket_5010",
Description = "Add to default bucket",
Matcher = "true",
BucketAssignment = new Dynatrace.Inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBucketAssignmentArgs
{
BucketName = "default_events",
},
Enabled = true,
},
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.dynatrace.OpenpipelineV2UsersessionsPipelines;
import com.pulumi.dynatrace.OpenpipelineV2UsersessionsPipelinesArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesMetadataListArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesMetadataListMetadataArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesProcessingArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDqlArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesDavisArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesStorageArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBucketAssignmentArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var max_pipeline = new OpenpipelineV2UsersessionsPipelines("max-pipeline", OpenpipelineV2UsersessionsPipelinesArgs.builder()
.displayName("Warning pipeline")
.customId("pipeline_Warning_pipeline_2773_tf_#name#")
.metadataList(OpenpipelineV2UsersessionsPipelinesMetadataListArgs.builder()
.metadatas(OpenpipelineV2UsersessionsPipelinesMetadataListMetadataArgs.builder()
.entryKey("environment")
.entryValue("production")
.build())
.build())
.processing(OpenpipelineV2UsersessionsPipelinesProcessingArgs.builder()
.processors(OpenpipelineV2UsersessionsPipelinesProcessingProcessorsArgs.builder()
.processors(
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs.builder()
.type("drop")
.id("processor_Drop_unnecessary_records_3802")
.description("Drop unnecessary records")
.matcher("not matchesPhrase(record.name, \"Warning\")")
.enabled(true)
.build(),
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs.builder()
.type("fieldsAdd")
.id("processor_Add_warning_flag_5434")
.description("Add warning flag")
.matcher("matchesPhrase(record.name, \"Warning\")")
.sampleData("""
{
"record.name": "Warning record"
} """)
.fieldsAdd(OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddArgs.builder()
.fields(OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs.builder()
.fields(OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs.builder()
.name("is_warning")
.value("true")
.build())
.build())
.build())
.enabled(true)
.build(),
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs.builder()
.type("fieldsRemove")
.id("processor_Remove_details_field_8539")
.description("Remove details field")
.sampleData("""
{
"record.name": "Warning",
"record.details": "some record details"
} """)
.matcher("isNotNull(record.details)")
.fieldsRemove(OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs.builder()
.fields("record.details")
.build())
.enabled(true)
.build(),
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs.builder()
.type("fieldsRename")
.id("processor_Rename_name_to_title_8530")
.description("Rename name to title")
.sampleData("""
{
"record.name": "Warning"
} """)
.matcher("true")
.fieldsRename(OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameArgs.builder()
.fields(OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs.builder()
.fields(OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs.builder()
.fromName("record.name")
.toName("record.title")
.build())
.build())
.build())
.enabled(true)
.build(),
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs.builder()
.type("dql")
.id("processor_Combine_title_and_summary_to_name_8808")
.description("Combine title and summary to name")
.sampleData("""
{
"record.title": "Warning",
"record.summary": "Request failed"
} """)
.matcher("true")
.dql(OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDqlArgs.builder()
.script("fieldsAdd record.name = concat(record.title, \" - \", record.summary)")
.build())
.enabled(true)
.build())
.build())
.build())
.davis(OpenpipelineV2UsersessionsPipelinesDavisArgs.builder()
.processors(OpenpipelineV2UsersessionsPipelinesDavisProcessorsArgs.builder()
.processors(OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorArgs.builder()
.type("davis")
.id("processor_Create_warning_event_8226")
.description("Create warning event")
.matcher("true")
.davis(OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisArgs.builder()
.properties(OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesArgs.builder()
.properties(
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs.builder()
.key("event.type")
.value("CUSTOM_ALERT")
.build(),
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs.builder()
.key("event.name")
.value("Warning detected")
.build(),
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs.builder()
.key("event.description")
.value("Warning: {dims:record.summary}")
.build())
.build())
.build())
.enabled(true)
.build())
.build())
.build())
.metricExtraction(OpenpipelineV2UsersessionsPipelinesMetricExtractionArgs.builder()
.processors(OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsArgs.builder()
.processors(
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorArgs.builder()
.type("counterMetric")
.id("processor_Count_warning_events_6392")
.description("Count warnings")
.matcher("true")
.counterMetric(OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs.builder()
.metricKey("warning.count")
.dimensions(OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs.builder()
.dimensions(
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("dt.cost.costcenter")
.build(),
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("dt.cost.product")
.build(),
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("dt.security_context")
.build(),
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("record.category")
.destinationFieldName("warning_category")
.build())
.build())
.build())
.enabled(true)
.build(),
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorArgs.builder()
.type("valueMetric")
.id("processor_Warning_timeout_1990")
.description("Warning timeout")
.matcher("true")
.valueMetric(OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs.builder()
.metricKey("warning.timeout")
.field("recording.timeout_in_min")
.defaultValue("60")
.dimensions(OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs.builder()
.dimensions(
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("dt.cost.costcenter")
.build(),
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("dt.cost.product")
.build(),
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("dt.security_context")
.build(),
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs.builder()
.extractionType("field")
.strategy("equals")
.sourceFieldName("record.category")
.destinationFieldName("warning_category")
.build())
.build())
.build())
.enabled(true)
.build())
.build())
.build())
.securityContext(OpenpipelineV2UsersessionsPipelinesSecurityContextArgs.builder()
.processors(OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsArgs.builder()
.processors(
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorArgs.builder()
.type("securityContext")
.id("processor_Use_dt.security_context_if_set_1080")
.description("Use dt.security_context if set")
.matcher("isNotNull(dt.security_context)")
.securityContext(OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs.builder()
.value(OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs.builder()
.type("field")
.field(OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs.builder()
.sourceFieldName("dt.security_context")
.build())
.build())
.build())
.enabled(true)
.build(),
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorArgs.builder()
.type("securityContext")
.id("processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465")
.description("Assign warnings to ACME teams if no context set")
.matcher("isNull(dt.security_context)")
.securityContext(OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs.builder()
.value(OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs.builder()
.type("multiValueConstant")
.multiValueConstants(
"ACME1",
"ACME2")
.build())
.build())
.enabled(true)
.build())
.build())
.build())
.storage(OpenpipelineV2UsersessionsPipelinesStorageArgs.builder()
.processors(OpenpipelineV2UsersessionsPipelinesStorageProcessorsArgs.builder()
.processors(OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorArgs.builder()
.type("bucketAssignment")
.id("processor_Add_to_default_bucket_5010")
.description("Add to default bucket")
.matcher("true")
.bucketAssignment(OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBucketAssignmentArgs.builder()
.bucketName("default_events")
.build())
.enabled(true)
.build())
.build())
.build())
.build());
}
}
resources:
max-pipeline:
type: dynatrace:OpenpipelineV2UsersessionsPipelines
properties:
displayName: Warning pipeline
customId: pipeline_Warning_pipeline_2773_tf_#name#
metadataList:
metadatas:
- entryKey: environment
entryValue: production
processing:
processors:
processors:
- type: drop
id: processor_Drop_unnecessary_records_3802
description: Drop unnecessary records
matcher: not matchesPhrase(record.name, "Warning")
enabled: true
- type: fieldsAdd
id: processor_Add_warning_flag_5434
description: Add warning flag
matcher: matchesPhrase(record.name, "Warning")
sampleData: "{\n \"record.name\": \"Warning record\" \n}"
fieldsAdd:
fields:
fields:
- name: is_warning
value: 'true'
enabled: true
- type: fieldsRemove
id: processor_Remove_details_field_8539
description: Remove details field
sampleData: |-
{
"record.name": "Warning",
"record.details": "some record details"
}
matcher: isNotNull(record.details)
fieldsRemove:
fields:
- record.details
enabled: true
- type: fieldsRename
id: processor_Rename_name_to_title_8530
description: Rename name to title
sampleData: |-
{
"record.name": "Warning"
}
matcher: 'true'
fieldsRename:
fields:
fields:
- fromName: record.name
toName: record.title
enabled: true
- type: dql
id: processor_Combine_title_and_summary_to_name_8808
description: Combine title and summary to name
sampleData: |-
{
"record.title": "Warning",
"record.summary": "Request failed"
}
matcher: 'true'
dql:
script: fieldsAdd record.name = concat(record.title, " - ", record.summary)
enabled: true
davis:
processors:
processors:
- type: davis
id: processor_Create_warning_event_8226
description: Create warning event
matcher: 'true'
davis:
properties:
properties:
- key: event.type
value: CUSTOM_ALERT
- key: event.name
value: Warning detected
- key: event.description
value: 'Warning: {dims:record.summary}'
enabled: true
metricExtraction:
processors:
processors:
- type: counterMetric
id: processor_Count_warning_events_6392
description: Count warnings
matcher: 'true'
counterMetric:
metricKey: warning.count
dimensions:
dimensions:
- extractionType: field
strategy: equals
sourceFieldName: dt.cost.costcenter
- extractionType: field
strategy: equals
sourceFieldName: dt.cost.product
- extractionType: field
strategy: equals
sourceFieldName: dt.security_context
- extractionType: field
strategy: equals
sourceFieldName: record.category
destinationFieldName: warning_category
enabled: true
- type: valueMetric
id: processor_Warning_timeout_1990
description: Warning timeout
matcher: 'true'
valueMetric:
metricKey: warning.timeout
field: recording.timeout_in_min
defaultValue: 60
dimensions:
dimensions:
- extractionType: field
strategy: equals
sourceFieldName: dt.cost.costcenter
- extractionType: field
strategy: equals
sourceFieldName: dt.cost.product
- extractionType: field
strategy: equals
sourceFieldName: dt.security_context
- extractionType: field
strategy: equals
sourceFieldName: record.category
destinationFieldName: warning_category
enabled: true
securityContext:
processors:
processors:
- type: securityContext
id: processor_Use_dt.security_context_if_set_1080
description: Use dt.security_context if set
matcher: isNotNull(dt.security_context)
securityContext:
value:
type: field
field:
sourceFieldName: dt.security_context
enabled: true
- type: securityContext
id: processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465
description: Assign warnings to ACME teams if no context set
matcher: isNull(dt.security_context)
securityContext:
value:
type: multiValueConstant
multiValueConstants:
- ACME1
- ACME2
enabled: true
storage:
processors:
processors:
- type: bucketAssignment
id: processor_Add_to_default_bucket_5010
description: Add to default bucket
matcher: 'true'
bucketAssignment:
bucketName: default_events
enabled: true
pulumi {
required_providers {
dynatrace = {
source = "pulumi/dynatrace"
}
}
}
resource "dynatrace_openpipelinev2usersessionspipelines" "max-pipeline" {
display_name = "Warning pipeline"
custom_id = "pipeline_Warning_pipeline_2773_tf_#name#"
metadata_list = {
metadatas = [{
"entryKey" = "environment"
"entryValue" = "production"
}]
}
processing = {
processors = {
processors = [{
"type" = "drop"
"id" = "processor_Drop_unnecessary_records_3802"
"description" = "Drop unnecessary records"
"matcher" = "not matchesPhrase(record.name, \"Warning\")"
"enabled" = true
}, {
"type" = "fieldsAdd"
"id" = "processor_Add_warning_flag_5434"
"description" = "Add warning flag"
"matcher" = "matchesPhrase(record.name, \"Warning\")"
"sampleData" = "{\n \"record.name\": \"Warning record\" \n}"
"fieldsAdd" = {
"fields" = {
"fields" = [{
"name" = "is_warning"
"value" = "true"
}]
}
}
"enabled" = true
}, {
"type" = "fieldsRemove"
"id" = "processor_Remove_details_field_8539"
"description" = "Remove details field"
"sampleData" = "{\n \"record.name\": \"Warning\",\n \"record.details\": \"some record details\"\n}"
"matcher" = "isNotNull(record.details)"
"fieldsRemove" = {
"fields" = ["record.details"]
}
"enabled" = true
}, {
"type" = "fieldsRename"
"id" = "processor_Rename_name_to_title_8530"
"description" = "Rename name to title"
"sampleData" = "{\n \"record.name\": \"Warning\"\n}"
"matcher" = "true"
"fieldsRename" = {
"fields" = {
"fields" = [{
"fromName" = "record.name"
"toName" = "record.title"
}]
}
}
"enabled" = true
}, {
"type" = "dql"
"id" = "processor_Combine_title_and_summary_to_name_8808"
"description" = "Combine title and summary to name"
"sampleData" = "{\n \"record.title\": \"Warning\",\n \"record.summary\": \"Request failed\"\n}"
"matcher" = "true"
"dql" = {
"script" = "fieldsAdd record.name = concat(record.title, \" - \", record.summary)"
}
"enabled" = true
}]
}
}
davis = {
processors = {
processors = [{
"type" = "davis"
"id" = "processor_Create_warning_event_8226"
"description" = "Create warning event"
"matcher" = "true"
"davis" = {
"properties" = {
"properties" = [{
"key" = "event.type"
"value" = "CUSTOM_ALERT"
}, {
"key" = "event.name"
"value" = "Warning detected"
}, {
"key" = "event.description"
"value" = "Warning: {dims:record.summary}"
}]
}
}
"enabled" = true
}]
}
}
metric_extraction = {
processors = {
processors = [{
"type" = "counterMetric"
"id" = "processor_Count_warning_events_6392"
"description" = "Count warnings"
"matcher" = "true"
"counterMetric" = {
"metricKey" = "warning.count"
"dimensions" = {
"dimensions" = [{
"extractionType" = "field"
"strategy" = "equals"
"sourceFieldName" = "dt.cost.costcenter"
}, {
"extractionType" = "field"
"strategy" = "equals"
"sourceFieldName" = "dt.cost.product"
}, {
"extractionType" = "field"
"strategy" = "equals"
"sourceFieldName" = "dt.security_context"
}, {
"extractionType" = "field"
"strategy" = "equals"
"sourceFieldName" = "record.category"
"destinationFieldName" = "warning_category"
}]
}
}
"enabled" = true
}, {
"type" = "valueMetric"
"id" = "processor_Warning_timeout_1990"
"description" = "Warning timeout"
"matcher" = "true"
"valueMetric" = {
"metricKey" = "warning.timeout"
"field" = "recording.timeout_in_min"
"defaultValue" = 60
"dimensions" = {
"dimensions" = [{
"extractionType" = "field"
"strategy" = "equals"
"sourceFieldName" = "dt.cost.costcenter"
}, {
"extractionType" = "field"
"strategy" = "equals"
"sourceFieldName" = "dt.cost.product"
}, {
"extractionType" = "field"
"strategy" = "equals"
"sourceFieldName" = "dt.security_context"
}, {
"extractionType" = "field"
"strategy" = "equals"
"sourceFieldName" = "record.category"
"destinationFieldName" = "warning_category"
}]
}
}
"enabled" = true
}]
}
}
security_context = {
processors = {
processors = [{
"type" = "securityContext"
"id" = "processor_Use_dt.security_context_if_set_1080"
"description" = "Use dt.security_context if set"
"matcher" = "isNotNull(dt.security_context)"
"securityContext" = {
"value" = {
"type" = "field"
"field" = {
"sourceFieldName" = "dt.security_context"
}
}
}
"enabled" = true
}, {
"type" = "securityContext"
"id" = "processor_Assign_warnings_to_ACME_teams_if_no_context_set_5465"
"description" = "Assign warnings to ACME teams if no context set"
"matcher" = "isNull(dt.security_context)"
"securityContext" = {
"value" = {
"type" = "multiValueConstant"
"multiValueConstants" = ["ACME1", "ACME2"]
}
}
"enabled" = true
}]
}
}
storage = {
processors = {
processors = [{
"type" = "bucketAssignment"
"id" = "processor_Add_to_default_bucket_5010"
"description" = "Add to default bucket"
"matcher" = "true"
"bucketAssignment" = {
"bucketName" = "default_events"
}
"enabled" = true
}]
}
}
}
Create OpenpipelineV2UsersessionsPipelines Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OpenpipelineV2UsersessionsPipelines(name: string, args: OpenpipelineV2UsersessionsPipelinesArgs, opts?: CustomResourceOptions);@overload
def OpenpipelineV2UsersessionsPipelines(resource_name: str,
args: OpenpipelineV2UsersessionsPipelinesArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OpenpipelineV2UsersessionsPipelines(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
custom_id: Optional[str] = None,
metadata_list: Optional[OpenpipelineV2UsersessionsPipelinesMetadataListArgs] = None,
davis: Optional[OpenpipelineV2UsersessionsPipelinesDavisArgs] = None,
data_extraction: Optional[OpenpipelineV2UsersessionsPipelinesDataExtractionArgs] = None,
group_role: Optional[str] = None,
cost_allocation: Optional[OpenpipelineV2UsersessionsPipelinesCostAllocationArgs] = None,
metric_extraction: Optional[OpenpipelineV2UsersessionsPipelinesMetricExtractionArgs] = None,
processing: Optional[OpenpipelineV2UsersessionsPipelinesProcessingArgs] = None,
product_allocation: Optional[OpenpipelineV2UsersessionsPipelinesProductAllocationArgs] = None,
routing: Optional[str] = None,
security_context: Optional[OpenpipelineV2UsersessionsPipelinesSecurityContextArgs] = None,
smartscape_edge_extraction: Optional[OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionArgs] = None,
smartscape_node_extraction: Optional[OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionArgs] = None,
storage: Optional[OpenpipelineV2UsersessionsPipelinesStorageArgs] = None)func NewOpenpipelineV2UsersessionsPipelines(ctx *Context, name string, args OpenpipelineV2UsersessionsPipelinesArgs, opts ...ResourceOption) (*OpenpipelineV2UsersessionsPipelines, error)public OpenpipelineV2UsersessionsPipelines(string name, OpenpipelineV2UsersessionsPipelinesArgs args, CustomResourceOptions? opts = null)
public OpenpipelineV2UsersessionsPipelines(String name, OpenpipelineV2UsersessionsPipelinesArgs args)
public OpenpipelineV2UsersessionsPipelines(String name, OpenpipelineV2UsersessionsPipelinesArgs args, CustomResourceOptions options)
type: dynatrace:OpenpipelineV2UsersessionsPipelines
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "dynatrace_openpipeline_v2_usersessions_pipelines" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args OpenpipelineV2UsersessionsPipelinesArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args OpenpipelineV2UsersessionsPipelinesArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args OpenpipelineV2UsersessionsPipelinesArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OpenpipelineV2UsersessionsPipelinesArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OpenpipelineV2UsersessionsPipelinesArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
OpenpipelineV2UsersessionsPipelines Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The OpenpipelineV2UsersessionsPipelines resource accepts the following input properties:
- Custom
Id string - Custom pipeline id
- Display
Name string - Display name
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation - Cost allocation stage
- Data
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction - Data extraction stage
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis - Davis event extraction stage
- Group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - Metadata
List Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metadata List - Pipeline metadata list
- Metric
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction - Metrics extraction stage
- Processing
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing - Processing stage
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation - Product allocation stage
- Routing string
- Routing. Possible values:
notRoutable,routable - Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context - Security context stage
- Smartscape
Edge Pulumiverse.Extraction Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- Smartscape
Node Pulumiverse.Extraction Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- Storage
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage - Storage stage
- Custom
Id string - Custom pipeline id
- Display
Name string - Display name
- Cost
Allocation OpenpipelineV2Usersessions Pipelines Cost Allocation Args - Cost allocation stage
- Data
Extraction OpenpipelineV2Usersessions Pipelines Data Extraction Args - Data extraction stage
- Davis
Openpipeline
V2Usersessions Pipelines Davis Args - Davis event extraction stage
- Group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - Metadata
List OpenpipelineV2Usersessions Pipelines Metadata List Args - Pipeline metadata list
- Metric
Extraction OpenpipelineV2Usersessions Pipelines Metric Extraction Args - Metrics extraction stage
- Processing
Openpipeline
V2Usersessions Pipelines Processing Args - Processing stage
- Product
Allocation OpenpipelineV2Usersessions Pipelines Product Allocation Args - Product allocation stage
- Routing string
- Routing. Possible values:
notRoutable,routable - Security
Context OpenpipelineV2Usersessions Pipelines Security Context Args - Security context stage
- Smartscape
Edge OpenpipelineExtraction V2Usersessions Pipelines Smartscape Edge Extraction Args - Smartscape edge extraction stage
- Smartscape
Node OpenpipelineExtraction V2Usersessions Pipelines Smartscape Node Extraction Args - Smartscape node extraction stage
- Storage
Openpipeline
V2Usersessions 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 OpenpipelineV2Usersessions Pipelines Cost Allocation - Cost allocation stage
- data
Extraction OpenpipelineV2Usersessions Pipelines Data Extraction - Data extraction stage
- davis
Openpipeline
V2Usersessions Pipelines Davis - Davis event extraction stage
- group
Role String - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata
List OpenpipelineV2Usersessions Pipelines Metadata List - Pipeline metadata list
- metric
Extraction OpenpipelineV2Usersessions Pipelines Metric Extraction - Metrics extraction stage
- processing
Openpipeline
V2Usersessions Pipelines Processing - Processing stage
- product
Allocation OpenpipelineV2Usersessions Pipelines Product Allocation - Product allocation stage
- routing String
- Routing. Possible values:
notRoutable,routable - security
Context OpenpipelineV2Usersessions Pipelines Security Context - Security context stage
- smartscape
Edge OpenpipelineExtraction V2Usersessions Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- smartscape
Node OpenpipelineExtraction V2Usersessions Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- storage
Openpipeline
V2Usersessions Pipelines Storage - Storage stage
- custom
Id string - Custom pipeline id
- display
Name string - Display name
- cost
Allocation OpenpipelineV2Usersessions Pipelines Cost Allocation - Cost allocation stage
- data
Extraction OpenpipelineV2Usersessions Pipelines Data Extraction - Data extraction stage
- davis
Openpipeline
V2Usersessions Pipelines Davis - Davis event extraction stage
- group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata
List OpenpipelineV2Usersessions Pipelines Metadata List - Pipeline metadata list
- metric
Extraction OpenpipelineV2Usersessions Pipelines Metric Extraction - Metrics extraction stage
- processing
Openpipeline
V2Usersessions Pipelines Processing - Processing stage
- product
Allocation OpenpipelineV2Usersessions Pipelines Product Allocation - Product allocation stage
- routing string
- Routing. Possible values:
notRoutable,routable - security
Context OpenpipelineV2Usersessions Pipelines Security Context - Security context stage
- smartscape
Edge OpenpipelineExtraction V2Usersessions Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- smartscape
Node OpenpipelineExtraction V2Usersessions Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- storage
Openpipeline
V2Usersessions Pipelines Storage - Storage stage
- custom_
id str - Custom pipeline id
- display_
name str - Display name
- cost_
allocation OpenpipelineV2Usersessions Pipelines Cost Allocation Args - Cost allocation stage
- data_
extraction OpenpipelineV2Usersessions Pipelines Data Extraction Args - Data extraction stage
- davis
Openpipeline
V2Usersessions Pipelines Davis Args - Davis event extraction stage
- group_
role str - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata_
list OpenpipelineV2Usersessions Pipelines Metadata List Args - Pipeline metadata list
- metric_
extraction OpenpipelineV2Usersessions Pipelines Metric Extraction Args - Metrics extraction stage
- processing
Openpipeline
V2Usersessions Pipelines Processing Args - Processing stage
- product_
allocation OpenpipelineV2Usersessions Pipelines Product Allocation Args - Product allocation stage
- routing str
- Routing. Possible values:
notRoutable,routable - security_
context OpenpipelineV2Usersessions Pipelines Security Context Args - Security context stage
- smartscape_
edge_ Openpipelineextraction V2Usersessions Pipelines Smartscape Edge Extraction Args - Smartscape edge extraction stage
- smartscape_
node_ Openpipelineextraction V2Usersessions Pipelines Smartscape Node Extraction Args - Smartscape node extraction stage
- storage
Openpipeline
V2Usersessions 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 OpenpipelineV2UsersessionsPipelines resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing OpenpipelineV2UsersessionsPipelines Resource
Get an existing OpenpipelineV2UsersessionsPipelines resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: OpenpipelineV2UsersessionsPipelinesState, opts?: CustomResourceOptions): OpenpipelineV2UsersessionsPipelines@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cost_allocation: Optional[OpenpipelineV2UsersessionsPipelinesCostAllocationArgs] = None,
custom_id: Optional[str] = None,
data_extraction: Optional[OpenpipelineV2UsersessionsPipelinesDataExtractionArgs] = None,
davis: Optional[OpenpipelineV2UsersessionsPipelinesDavisArgs] = None,
display_name: Optional[str] = None,
group_role: Optional[str] = None,
metadata_list: Optional[OpenpipelineV2UsersessionsPipelinesMetadataListArgs] = None,
metric_extraction: Optional[OpenpipelineV2UsersessionsPipelinesMetricExtractionArgs] = None,
processing: Optional[OpenpipelineV2UsersessionsPipelinesProcessingArgs] = None,
product_allocation: Optional[OpenpipelineV2UsersessionsPipelinesProductAllocationArgs] = None,
routing: Optional[str] = None,
security_context: Optional[OpenpipelineV2UsersessionsPipelinesSecurityContextArgs] = None,
smartscape_edge_extraction: Optional[OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionArgs] = None,
smartscape_node_extraction: Optional[OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionArgs] = None,
storage: Optional[OpenpipelineV2UsersessionsPipelinesStorageArgs] = None) -> OpenpipelineV2UsersessionsPipelinesfunc GetOpenpipelineV2UsersessionsPipelines(ctx *Context, name string, id IDInput, state *OpenpipelineV2UsersessionsPipelinesState, opts ...ResourceOption) (*OpenpipelineV2UsersessionsPipelines, error)public static OpenpipelineV2UsersessionsPipelines Get(string name, Input<string> id, OpenpipelineV2UsersessionsPipelinesState? state, CustomResourceOptions? opts = null)public static OpenpipelineV2UsersessionsPipelines get(String name, Output<String> id, OpenpipelineV2UsersessionsPipelinesState state, CustomResourceOptions options)resources: _: type: dynatrace:OpenpipelineV2UsersessionsPipelines get: id: ${id}import {
to = dynatrace_openpipeline_v2_usersessions_pipelines.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation - Cost allocation stage
- Custom
Id string - Custom pipeline id
- Data
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction - Data extraction stage
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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 V2Usersessions Pipelines Metadata List - Pipeline metadata list
- Metric
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction - Metrics extraction stage
- Processing
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing - Processing stage
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation - Product allocation stage
- Routing string
- Routing. Possible values:
notRoutable,routable - Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context - Security context stage
- Smartscape
Edge Pulumiverse.Extraction Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- Smartscape
Node Pulumiverse.Extraction Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- Storage
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage - Storage stage
- Cost
Allocation OpenpipelineV2Usersessions Pipelines Cost Allocation Args - Cost allocation stage
- Custom
Id string - Custom pipeline id
- Data
Extraction OpenpipelineV2Usersessions Pipelines Data Extraction Args - Data extraction stage
- Davis
Openpipeline
V2Usersessions Pipelines Davis Args - Davis event extraction stage
- Display
Name string - Display name
- Group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - Metadata
List OpenpipelineV2Usersessions Pipelines Metadata List Args - Pipeline metadata list
- Metric
Extraction OpenpipelineV2Usersessions Pipelines Metric Extraction Args - Metrics extraction stage
- Processing
Openpipeline
V2Usersessions Pipelines Processing Args - Processing stage
- Product
Allocation OpenpipelineV2Usersessions Pipelines Product Allocation Args - Product allocation stage
- Routing string
- Routing. Possible values:
notRoutable,routable - Security
Context OpenpipelineV2Usersessions Pipelines Security Context Args - Security context stage
- Smartscape
Edge OpenpipelineExtraction V2Usersessions Pipelines Smartscape Edge Extraction Args - Smartscape edge extraction stage
- Smartscape
Node OpenpipelineExtraction V2Usersessions Pipelines Smartscape Node Extraction Args - Smartscape node extraction stage
- Storage
Openpipeline
V2Usersessions 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 OpenpipelineV2Usersessions Pipelines Cost Allocation - Cost allocation stage
- custom
Id String - Custom pipeline id
- data
Extraction OpenpipelineV2Usersessions Pipelines Data Extraction - Data extraction stage
- davis
Openpipeline
V2Usersessions Pipelines Davis - Davis event extraction stage
- display
Name String - Display name
- group
Role String - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata
List OpenpipelineV2Usersessions Pipelines Metadata List - Pipeline metadata list
- metric
Extraction OpenpipelineV2Usersessions Pipelines Metric Extraction - Metrics extraction stage
- processing
Openpipeline
V2Usersessions Pipelines Processing - Processing stage
- product
Allocation OpenpipelineV2Usersessions Pipelines Product Allocation - Product allocation stage
- routing String
- Routing. Possible values:
notRoutable,routable - security
Context OpenpipelineV2Usersessions Pipelines Security Context - Security context stage
- smartscape
Edge OpenpipelineExtraction V2Usersessions Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- smartscape
Node OpenpipelineExtraction V2Usersessions Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- storage
Openpipeline
V2Usersessions Pipelines Storage - Storage stage
- cost
Allocation OpenpipelineV2Usersessions Pipelines Cost Allocation - Cost allocation stage
- custom
Id string - Custom pipeline id
- data
Extraction OpenpipelineV2Usersessions Pipelines Data Extraction - Data extraction stage
- davis
Openpipeline
V2Usersessions Pipelines Davis - Davis event extraction stage
- display
Name string - Display name
- group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata
List OpenpipelineV2Usersessions Pipelines Metadata List - Pipeline metadata list
- metric
Extraction OpenpipelineV2Usersessions Pipelines Metric Extraction - Metrics extraction stage
- processing
Openpipeline
V2Usersessions Pipelines Processing - Processing stage
- product
Allocation OpenpipelineV2Usersessions Pipelines Product Allocation - Product allocation stage
- routing string
- Routing. Possible values:
notRoutable,routable - security
Context OpenpipelineV2Usersessions Pipelines Security Context - Security context stage
- smartscape
Edge OpenpipelineExtraction V2Usersessions Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- smartscape
Node OpenpipelineExtraction V2Usersessions Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- storage
Openpipeline
V2Usersessions Pipelines Storage - Storage stage
- cost_
allocation OpenpipelineV2Usersessions Pipelines Cost Allocation Args - Cost allocation stage
- custom_
id str - Custom pipeline id
- data_
extraction OpenpipelineV2Usersessions Pipelines Data Extraction Args - Data extraction stage
- davis
Openpipeline
V2Usersessions Pipelines Davis Args - Davis event extraction stage
- display_
name str - Display name
- group_
role str - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata_
list OpenpipelineV2Usersessions Pipelines Metadata List Args - Pipeline metadata list
- metric_
extraction OpenpipelineV2Usersessions Pipelines Metric Extraction Args - Metrics extraction stage
- processing
Openpipeline
V2Usersessions Pipelines Processing Args - Processing stage
- product_
allocation OpenpipelineV2Usersessions Pipelines Product Allocation Args - Product allocation stage
- routing str
- Routing. Possible values:
notRoutable,routable - security_
context OpenpipelineV2Usersessions Pipelines Security Context Args - Security context stage
- smartscape_
edge_ Openpipelineextraction V2Usersessions Pipelines Smartscape Edge Extraction Args - Smartscape edge extraction stage
- smartscape_
node_ Openpipelineextraction V2Usersessions Pipelines Smartscape Node Extraction Args - Smartscape node extraction stage
- storage
Openpipeline
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocation, OpenpipelineV2UsersessionsPipelinesCostAllocationArgs
- Processors
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors - Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors - Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessors, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsArgs
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessor, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions 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 V2Usersessions Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Usersessions Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Usersessions Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Usersessions Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorAzureLogForwarding, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizevent, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventEventProvider, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventEventType, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBucketAssignment, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCostAllocation, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCostAllocationValue, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCostAllocationValueField, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCounterMetric, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Usersessions 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
V2Usersessions Pipelines Cost Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDavis, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDavisProperties, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDql, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorDqlArgs
- Script string
- DQL script
- Script string
- DQL script
- script string
- DQL script
- script String
- DQL script
- script string
- DQL script
- script str
- DQL script
- script String
- DQL script
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsAdd, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsAddFields, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRemove, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRemoveArgs
- Fields List<string>
- Fields to remove
- Fields []string
- Fields to remove
- fields list(string)
- Fields to remove
- fields List<String>
- Fields to remove
- fields string[]
- Fields to remove
- fields Sequence[str]
- Fields to remove
- fields List<String>
- Fields to remove
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRename, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRenameFields, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorGeoLookup, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorHistogramMetric, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorInlineLookup, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorProductAllocation, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorProductAllocationValue, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorProductAllocationValueField, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- 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 V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- 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 V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEvent, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventType, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityContext, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityContextValue, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityContextValueField, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityEvent, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeEdge, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNode, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions 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 V2Usersessions Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Cost Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Usersessions 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 OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Usersessions Pipelines Cost Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Usersessions Pipelines Cost Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Usersessions Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorTechnology, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorValueMetric, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesCostAllocationProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesDataExtraction, OpenpipelineV2UsersessionsPipelinesDataExtractionArgs
- Processors
Openpipeline
V2Usersessions Pipelines Data Extraction Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Data Extraction Processors - Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Data Extraction Processors - Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Data Extraction Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessors, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsArgs
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessor, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions 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 V2Usersessions Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Usersessions Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Usersessions Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Usersessions Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizevent, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCostAllocation, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCounterMetric, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Usersessions 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
V2Usersessions Pipelines Data Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDavis, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDavisProperties, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDql, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorDqlArgs
- Script string
- DQL script
- Script string
- DQL script
- script string
- DQL script
- script String
- DQL script
- script string
- DQL script
- script str
- DQL script
- script String
- DQL script
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRemoveArgs
- Fields List<string>
- Fields to remove
- Fields []string
- Fields to remove
- fields list(string)
- Fields to remove
- fields List<String>
- Fields to remove
- fields string[]
- Fields to remove
- fields Sequence[str]
- Fields to remove
- fields List<String>
- Fields to remove
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRename, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorGeoLookup, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorInlineLookup, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorProductAllocation, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- 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 V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- 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 V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityContext, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions 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 V2Usersessions Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Data Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Usersessions 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 OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Usersessions Pipelines Data Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Usersessions Pipelines Data Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Usersessions Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorTechnology, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorValueMetric, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesDataExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesDavis, OpenpipelineV2UsersessionsPipelinesDavisArgs
- Processors
Openpipeline
V2Usersessions Pipelines Davis Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Davis Processors - Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Davis Processors - Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Davis Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2UsersessionsPipelinesDavisProcessors, OpenpipelineV2UsersessionsPipelinesDavisProcessorsArgs
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessor, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions 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 V2Usersessions Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Usersessions Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Usersessions Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Usersessions Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Usersessions Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Usersessions Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Usersessions Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Usersessions Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Usersessions Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Usersessions Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Usersessions Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Usersessions Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Usersessions Pipelines Davis Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Usersessions Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Usersessions Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Usersessions Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Usersessions Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Usersessions Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Usersessions Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Usersessions Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Usersessions Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Usersessions Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Usersessions Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Usersessions Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Usersessions Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Usersessions Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Usersessions Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Usersessions Pipelines Davis Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Usersessions Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Usersessions Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Usersessions Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Usersessions Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Usersessions Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Usersessions Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Usersessions Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Usersessions Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Usersessions Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Usersessions Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Usersessions Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Usersessions Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Usersessions Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Usersessions Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Usersessions Pipelines Davis Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Usersessions Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Usersessions Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Usersessions Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Usersessions Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Usersessions Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Usersessions Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Usersessions Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Usersessions Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Usersessions Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Usersessions Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Usersessions Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Usersessions Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Usersessions Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Usersessions Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Usersessions Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Usersessions Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Usersessions Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Usersessions Pipelines Davis Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Usersessions Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Usersessions Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Usersessions Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorAzureLogForwarding, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Usersessions Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizevent, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Usersessions Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Usersessions Pipelines Davis Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Usersessions Pipelines Davis Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Davis Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Usersessions Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Usersessions Pipelines Davis Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Davis Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Usersessions Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Usersessions Pipelines Davis Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventEventProvider, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventEventType, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Bizevent Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Usersessions 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
V2Usersessions Pipelines Davis Processors Processor Bizevent Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBucketAssignment, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCostAllocation, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCostAllocationValue, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCostAllocationValueField, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCounterMetric, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Usersessions 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
V2Usersessions Pipelines Davis Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavis, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisProperties, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDql, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorDqlArgs
- Script string
- DQL script
- Script string
- DQL script
- script string
- DQL script
- script String
- DQL script
- script string
- DQL script
- script str
- DQL script
- script String
- DQL script
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsAdd, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsAddFields, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRemove, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRemoveArgs
- Fields List<string>
- Fields to remove
- Fields []string
- Fields to remove
- fields list(string)
- Fields to remove
- fields List<String>
- Fields to remove
- fields string[]
- Fields to remove
- fields Sequence[str]
- Fields to remove
- fields List<String>
- Fields to remove
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRename, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRenameFields, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorGeoLookup, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorHistogramMetric, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorInlineLookup, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorProductAllocation, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- value Property Map
- The strategy to set product allocation field
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorProductAllocationValue, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorProductAllocationValueField, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- 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 V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- 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 V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEvent, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Usersessions Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Usersessions Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Usersessions Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Usersessions Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Usersessions Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Usersessions Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Usersessions Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Davis Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Usersessions Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Usersessions Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Usersessions Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Usersessions Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Davis Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Usersessions Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Usersessions Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Usersessions Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Usersessions Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventType, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityContext, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityContextValue, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityContextValueField, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityEvent, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeEdge, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNode, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions 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 V2Usersessions Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Davis Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Usersessions Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Usersessions 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 OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Usersessions Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Usersessions Pipelines Davis Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Usersessions Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Usersessions Pipelines Davis Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Usersessions Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorTechnology, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorValueMetric, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesDavisProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesMetadataList, OpenpipelineV2UsersessionsPipelinesMetadataListArgs
OpenpipelineV2UsersessionsPipelinesMetadataListMetadata, OpenpipelineV2UsersessionsPipelinesMetadataListMetadataArgs
- 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
OpenpipelineV2UsersessionsPipelinesMetricExtraction, OpenpipelineV2UsersessionsPipelinesMetricExtractionArgs
- Processors
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors - Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors - Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessors, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsArgs
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessor, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions 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 V2Usersessions Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Usersessions Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Usersessions Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Usersessions Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizevent, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCostAllocation, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetric, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Usersessions 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
V2Usersessions Pipelines Metric Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDavis, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDavisProperties, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDql, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorDqlArgs
- Script string
- DQL script
- Script string
- DQL script
- script string
- DQL script
- script String
- DQL script
- script string
- DQL script
- script str
- DQL script
- script String
- DQL script
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRemoveArgs
- Fields List<string>
- Fields to remove
- Fields []string
- Fields to remove
- fields list(string)
- Fields to remove
- fields List<String>
- Fields to remove
- fields string[]
- Fields to remove
- fields Sequence[str]
- Fields to remove
- fields List<String>
- Fields to remove
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRename, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorGeoLookup, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorInlineLookup, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorProductAllocation, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- 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 V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- 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 V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityContext, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions 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 V2Usersessions Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Metric Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Usersessions 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 OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Usersessions Pipelines Metric Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Usersessions Pipelines Metric Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Usersessions Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorTechnology, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetric, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesProcessing, OpenpipelineV2UsersessionsPipelinesProcessingArgs
- Processors
Openpipeline
V2Usersessions Pipelines Processing Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Processing Processors - Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Processing Processors - Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Processing Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2UsersessionsPipelinesProcessingProcessors, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsArgs
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessor, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions 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 V2Usersessions Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Usersessions Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Usersessions Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Usersessions Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Usersessions Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Usersessions Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Usersessions Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Usersessions Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Usersessions Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Usersessions Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Usersessions Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Usersessions Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Usersessions Pipelines Processing Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Usersessions Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Usersessions Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Usersessions Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Usersessions Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Usersessions Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Usersessions Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Usersessions Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Usersessions Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Usersessions Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Usersessions Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Usersessions Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Usersessions Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Usersessions Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Usersessions Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Usersessions Pipelines Processing Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Usersessions Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Usersessions Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Usersessions Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Usersessions Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Usersessions Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Usersessions Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Usersessions Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Usersessions Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Usersessions Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Usersessions Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Usersessions Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Usersessions Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Usersessions Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Usersessions Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Usersessions Pipelines Processing Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Usersessions Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Usersessions Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Usersessions Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Usersessions Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Usersessions Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Usersessions Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Usersessions Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Usersessions Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Usersessions Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Usersessions Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Usersessions Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Usersessions Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Usersessions Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Usersessions Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Usersessions Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Usersessions Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Usersessions Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Usersessions Pipelines Processing Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Usersessions Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Usersessions Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Usersessions Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorAzureLogForwarding, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Usersessions Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizevent, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Usersessions Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Usersessions Pipelines Processing Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Usersessions Pipelines Processing Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Processing Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Usersessions Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Usersessions Pipelines Processing Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Processing Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Usersessions Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Usersessions Pipelines Processing Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventEventProvider, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventEventType, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Bizevent Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Usersessions 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
V2Usersessions Pipelines Processing Processors Processor Bizevent Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBucketAssignment, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCostAllocation, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCostAllocationValue, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCostAllocationValueField, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCounterMetric, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Usersessions 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
V2Usersessions Pipelines Processing Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDavis, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDavisProperties, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDql, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorDqlArgs
- Script string
- DQL script
- Script string
- DQL script
- script string
- DQL script
- script String
- DQL script
- script string
- DQL script
- script str
- DQL script
- script String
- DQL script
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAdd, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFields, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRemove, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs
- Fields List<string>
- Fields to remove
- Fields []string
- Fields to remove
- fields list(string)
- Fields to remove
- fields List<String>
- Fields to remove
- fields string[]
- Fields to remove
- fields Sequence[str]
- Fields to remove
- fields List<String>
- Fields to remove
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRename, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFields, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorGeoLookup, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorHistogramMetric, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorInlineLookup, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorProductAllocation, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- value Property Map
- The strategy to set product allocation field
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorProductAllocationValue, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorProductAllocationValueField, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- 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 V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- 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 V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEvent, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Usersessions Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Usersessions Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Usersessions Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Usersessions Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Usersessions Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Usersessions Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Usersessions Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Processing Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Usersessions Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Usersessions Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Usersessions Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Usersessions Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Processing Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Usersessions Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Usersessions Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Usersessions Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Usersessions Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventType, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityContext, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityContextValue, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityContextValueField, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityEvent, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeEdge, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNode, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions 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 V2Usersessions Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Processing Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Usersessions Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Usersessions 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 OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Usersessions Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Usersessions Pipelines Processing Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Usersessions Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Usersessions Pipelines Processing Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Usersessions Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorTechnology, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorValueMetric, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesProcessingProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesProductAllocation, OpenpipelineV2UsersessionsPipelinesProductAllocationArgs
- Processors
Openpipeline
V2Usersessions Pipelines Product Allocation Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Product Allocation Processors - Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Product Allocation Processors - Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Product Allocation Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessors, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsArgs
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessor, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions 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 V2Usersessions Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Usersessions Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Usersessions Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Usersessions Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorAzureLogForwarding, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizevent, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventEventProvider, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventEventType, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBucketAssignment, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCostAllocation, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCostAllocationValue, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCostAllocationValueField, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCounterMetric, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Usersessions 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
V2Usersessions Pipelines Product Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDavis, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDavisProperties, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDql, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorDqlArgs
- Script string
- DQL script
- Script string
- DQL script
- script string
- DQL script
- script String
- DQL script
- script string
- DQL script
- script str
- DQL script
- script String
- DQL script
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsAdd, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsAddFields, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRemove, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRemoveArgs
- Fields List<string>
- Fields to remove
- Fields []string
- Fields to remove
- fields list(string)
- Fields to remove
- fields List<String>
- Fields to remove
- fields string[]
- Fields to remove
- fields Sequence[str]
- Fields to remove
- fields List<String>
- Fields to remove
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRename, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRenameFields, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorGeoLookup, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorHistogramMetric, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorInlineLookup, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorProductAllocation, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorProductAllocationValue, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorProductAllocationValueField, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- 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 V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- 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 V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEvent, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventType, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityContext, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Product Allocation Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityContextValue, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityContextValueField, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityEvent, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeEdge, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNode, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions 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 V2Usersessions Pipelines Product Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Product Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Product Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Usersessions 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 OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Product Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Usersessions Pipelines Product Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Product Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Usersessions Pipelines Product Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Product Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Usersessions Pipelines Product Allocation Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorTechnology, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorValueMetric, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesProductAllocationProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSecurityContext, OpenpipelineV2UsersessionsPipelinesSecurityContextArgs
- Processors
Openpipeline
V2Usersessions Pipelines Security Context Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Security Context Processors - Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Security Context Processors - Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Security Context Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessors, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsArgs
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessor, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions 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 V2Usersessions Pipelines Security Context Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Security Context Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Security Context Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Security Context Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Security Context Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Security Context Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Security Context Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Security Context Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Security Context Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Security Context Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Security Context Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Security Context Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Security Context Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Usersessions Pipelines Security Context Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Usersessions Pipelines Security Context Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Usersessions Pipelines Security Context Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorAzureLogForwarding, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizevent, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventEventProvider, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventEventType, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBucketAssignment, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCostAllocation, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCostAllocationValue, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCostAllocationValueField, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCounterMetric, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Usersessions 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
V2Usersessions Pipelines Security Context Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDavis, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDavisProperties, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDql, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorDqlArgs
- Script string
- DQL script
- Script string
- DQL script
- script string
- DQL script
- script String
- DQL script
- script string
- DQL script
- script str
- DQL script
- script String
- DQL script
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsAdd, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsAddFields, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRemove, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRemoveArgs
- Fields List<string>
- Fields to remove
- Fields []string
- Fields to remove
- fields list(string)
- Fields to remove
- fields List<String>
- Fields to remove
- fields string[]
- Fields to remove
- fields Sequence[str]
- Fields to remove
- fields List<String>
- Fields to remove
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRename, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRenameFields, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorGeoLookup, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorHistogramMetric, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorInlineLookup, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorProductAllocation, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorProductAllocationValue, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorProductAllocationValueField, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- 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 V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- 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 V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEvent, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventType, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContext, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Security Context Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValue, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueField, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityEvent, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeEdge, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNode, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions 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 V2Usersessions Pipelines Security Context Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Security Context Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Security Context Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Usersessions 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 OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Security Context Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Usersessions Pipelines Security Context Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Security Context Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Usersessions Pipelines Security Context Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Security Context Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Usersessions Pipelines Security Context Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorTechnology, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorValueMetric, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSecurityContextProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtraction, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionArgs
- Processors
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors - Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors - Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessors, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessor, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions 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 V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions 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 V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizevent, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocation, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetric, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Usersessions 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
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavis, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisProperties, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDql, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDqlArgs
- Script string
- DQL script
- Script string
- DQL script
- script string
- DQL script
- script String
- DQL script
- script string
- DQL script
- script str
- DQL script
- script String
- DQL script
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRemoveArgs
- Fields List<string>
- Fields to remove
- Fields []string
- Fields to remove
- fields list(string)
- Fields to remove
- fields List<String>
- Fields to remove
- fields string[]
- Fields to remove
- fields Sequence[str]
- Fields to remove
- fields List<String>
- Fields to remove
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRename, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorGeoLookup, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorInlineLookup, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocation, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- 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 V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- 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 V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContext, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions 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 V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Usersessions 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 OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Usersessions Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorTechnology, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetric, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtraction, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionArgs
- Processors
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors - Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors - Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessors, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessor, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions 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 V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions 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 V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizevent, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocation, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetric, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Usersessions 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
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavis, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisProperties, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDql, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorDqlArgs
- Script string
- DQL script
- Script string
- DQL script
- script string
- DQL script
- script String
- DQL script
- script string
- DQL script
- script str
- DQL script
- script String
- DQL script
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRemoveArgs
- Fields List<string>
- Fields to remove
- Fields []string
- Fields to remove
- fields list(string)
- Fields to remove
- fields List<String>
- Fields to remove
- fields string[]
- Fields to remove
- fields Sequence[str]
- Fields to remove
- fields List<String>
- Fields to remove
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRename, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorGeoLookup, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorInlineLookup, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocation, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- 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 V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- 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 V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContext, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions 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 V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Usersessions 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 OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Usersessions Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorTechnology, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetric, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesStorage, OpenpipelineV2UsersessionsPipelinesStorageArgs
- Processors
Openpipeline
V2Usersessions Pipelines Storage Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Storage Processors - Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Storage Processors - Processors of stage
- processors
Openpipeline
V2Usersessions Pipelines Storage Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2UsersessionsPipelinesStorageProcessors, OpenpipelineV2UsersessionsPipelinesStorageProcessorsArgs
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessor, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorArgs
- Description string
- No documentation available
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Id string
- Processor identifier
- Type string
- Processor type. Possible values:
azureLogForwarding,bizevent,bucketAssignment,costAllocation,counterMetric,davis,dql,drop,fieldsAdd,fieldsRemove,fieldsRename,geoLookup,histogramMetric,inlineLookup,noStorage,productAllocation,samplingAwareCounterMetric,samplingAwareHistogramMetric,samplingAwareValueMetric,sdlcEvent,securityContext,securityEvent,smartscapeEdge,smartscapeNode,technology,valueMetric - Azure
Log Pulumiverse.Forwarding Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions 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 V2Usersessions Pipelines Storage Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Usersessions Pipelines Storage Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Usersessions Pipelines Storage Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Usersessions Pipelines Storage Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Usersessions Pipelines Storage Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Usersessions Pipelines Storage Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Usersessions Pipelines Storage Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Usersessions Pipelines Storage Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Usersessions Pipelines Storage Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Usersessions Pipelines Storage Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Usersessions Pipelines Storage Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Storage Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Storage Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Storage Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Usersessions Pipelines Storage Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Usersessions Pipelines Storage Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Usersessions Pipelines Storage Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Usersessions Pipelines Storage Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Usersessions Pipelines Storage Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Storage Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Usersessions Pipelines Storage Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Usersessions Pipelines Storage Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Usersessions Pipelines Storage Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Usersessions Pipelines Storage Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Usersessions Pipelines Storage Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Usersessions Pipelines Storage Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Usersessions Pipelines Storage Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Usersessions Pipelines Storage Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Usersessions Pipelines Storage Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Usersessions Pipelines Storage Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Storage Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Storage Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Storage Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Usersessions Pipelines Storage Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Usersessions Pipelines Storage Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Usersessions Pipelines Storage Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Usersessions Pipelines Storage Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Usersessions Pipelines Storage Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Storage Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Usersessions Pipelines Storage Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Usersessions Pipelines Storage Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Usersessions Pipelines Storage Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Usersessions Pipelines Storage Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Usersessions Pipelines Storage Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Usersessions Pipelines Storage Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Usersessions Pipelines Storage Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Usersessions Pipelines Storage Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Usersessions Pipelines Storage Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Usersessions Pipelines Storage Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Usersessions Pipelines Storage Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Usersessions Pipelines Storage Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Usersessions Pipelines Storage Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Usersessions Pipelines Storage Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Usersessions Pipelines Storage Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Usersessions Pipelines Storage Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Usersessions Pipelines Storage Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Usersessions Pipelines Storage Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Storage Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Usersessions Pipelines Storage Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Usersessions Pipelines Storage Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Usersessions Pipelines Storage Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Usersessions Pipelines Storage Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Usersessions Pipelines Storage Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Usersessions Pipelines Storage Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Usersessions Pipelines Storage Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Usersessions Pipelines Storage Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Usersessions Pipelines Storage Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Usersessions Pipelines Storage Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Usersessions Pipelines Storage Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Usersessions Pipelines Storage Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Usersessions Pipelines Storage Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Usersessions Pipelines Storage Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Usersessions Pipelines Storage Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Usersessions Pipelines Storage Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Usersessions Pipelines Storage Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Usersessions Pipelines Storage Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorAzureLogForwarding, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Storage Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Usersessions Pipelines Storage Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizevent, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Usersessions Pipelines Storage Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Usersessions Pipelines Storage Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Storage Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Usersessions Pipelines Storage Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Storage Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Usersessions Pipelines Storage Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Usersessions Pipelines Storage Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Storage Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Usersessions Pipelines Storage Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Usersessions Pipelines Storage Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventEventProvider, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventEventProviderField, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventEventType, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventEventTypeField, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Bizevent Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Usersessions 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
V2Usersessions Pipelines Storage Processors Processor Bizevent Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBucketAssignment, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCostAllocation, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCostAllocationValue, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCostAllocationValueField, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCounterMetric, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Usersessions 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
V2Usersessions Pipelines Storage Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDavis, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDavisProperties, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDql, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorDqlArgs
- Script string
- DQL script
- Script string
- DQL script
- script string
- DQL script
- script String
- DQL script
- script string
- DQL script
- script str
- DQL script
- script String
- DQL script
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsAdd, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsAddFields, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRemove, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRemoveArgs
- Fields List<string>
- Fields to remove
- Fields []string
- Fields to remove
- fields list(string)
- Fields to remove
- fields List<String>
- Fields to remove
- fields string[]
- Fields to remove
- fields Sequence[str]
- Fields to remove
- fields List<String>
- Fields to remove
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRename, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRenameFields, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorGeoLookup, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorHistogramMetric, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorInlineLookup, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorProductAllocation, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Product Allocation Value - The strategy to set product allocation field
- value Property Map
- The strategy to set product allocation field
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorProductAllocationValue, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorProductAllocationValueField, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- 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 V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- 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 V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEvent, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Usersessions Pipelines Storage Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Usersessions Pipelines Storage Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Usersessions Pipelines Storage Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Usersessions Pipelines Storage Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Usersessions 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 OpenpipelineV2Usersessions Pipelines Storage Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Usersessions Pipelines Storage Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Usersessions Pipelines Storage Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Usersessions Pipelines Storage Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Storage Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Usersessions Pipelines Storage Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Usersessions Pipelines Storage Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Usersessions Pipelines Storage Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Usersessions Pipelines Storage Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Usersessions Pipelines Storage Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Usersessions Pipelines Storage Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Usersessions Pipelines Storage Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Usersessions Pipelines Storage Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Usersessions Pipelines Storage Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventType, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityContext, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Usersessions Pipelines Storage Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityContextValue, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityContextValueField, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityEvent, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeEdge, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNode, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions 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 V2Usersessions Pipelines Storage Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Usersessions Pipelines Storage Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Storage Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Usersessions Pipelines Storage Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Usersessions 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 OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Storage Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Usersessions Pipelines Storage Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Usersessions Pipelines Storage Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Storage Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Usersessions Pipelines Storage Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Usersessions Pipelines Storage Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Usersessions 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 V2Usersessions Pipelines Storage Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Usersessions Pipelines Storage Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorTechnology, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorValueMetric, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
V2Usersessions 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
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorValueMetricDimensions, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2UsersessionsPipelinesStorageProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value 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