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.OpenpipelineV2DavisProblemsPipelinesdownloads all existing OpenPipeline definitions for davis problems 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.OpenpipelineV2DavisProblemsPipelines("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,
},
],
},
},
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_davis_custom_events",
},
enabled: true,
}],
},
},
});
import pulumi
import pulumiverse_dynatrace as dynatrace
max_pipeline = dynatrace.OpenpipelineV2DavisProblemsPipelines("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,
},
],
},
},
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_davis_custom_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.NewOpenpipelineV2DavisProblemsPipelines(ctx, "max-pipeline", &dynatrace.OpenpipelineV2DavisProblemsPipelinesArgs{
DisplayName: pulumi.String("Warning pipeline"),
CustomId: pulumi.String("pipeline_Warning_pipeline_2773_tf_#name#"),
MetadataList: &dynatrace.OpenpipelineV2DavisProblemsPipelinesMetadataListArgs{
Metadatas: dynatrace.OpenpipelineV2DavisProblemsPipelinesMetadataListMetadataArray{
&dynatrace.OpenpipelineV2DavisProblemsPipelinesMetadataListMetadataArgs{
EntryKey: pulumi.String("environment"),
EntryValue: pulumi.String("production"),
},
},
},
Processing: &dynatrace.OpenpipelineV2DavisProblemsPipelinesProcessingArgs{
Processors: &dynatrace.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsArgs{
Processors: dynatrace.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorArray{
&dynatrace.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorArgs{
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.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorArgs{
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.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsAddArgs{
Fields: &dynatrace.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs{
Fields: dynatrace.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArray{
&dynatrace.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs{
Name: pulumi.String("is_warning"),
Value: pulumi.String("true"),
},
},
},
},
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorArgs{
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.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs{
Fields: pulumi.StringArray{
pulumi.String("record.details"),
},
},
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorArgs{
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.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRenameArgs{
Fields: &dynatrace.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs{
Fields: dynatrace.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArray{
&dynatrace.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs{
FromName: pulumi.String("record.name"),
ToName: pulumi.String("record.title"),
},
},
},
},
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorArgs{
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.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorDqlArgs{
Script: pulumi.String("fieldsAdd record.name = concat(record.title, \" - \", record.summary)"),
},
Enabled: pulumi.Bool(true),
},
},
},
},
SecurityContext: &dynatrace.OpenpipelineV2DavisProblemsPipelinesSecurityContextArgs{
Processors: &dynatrace.OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsArgs{
Processors: dynatrace.OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorArray{
&dynatrace.OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorArgs{
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.OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs{
Value: &dynatrace.OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs{
Type: pulumi.String("field"),
Field: &dynatrace.OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs{
SourceFieldName: pulumi.String("dt.security_context"),
},
},
},
Enabled: pulumi.Bool(true),
},
&dynatrace.OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorArgs{
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.OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs{
Value: &dynatrace.OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs{
Type: pulumi.String("multiValueConstant"),
MultiValueConstants: pulumi.StringArray{
pulumi.String("ACME1"),
pulumi.String("ACME2"),
},
},
},
Enabled: pulumi.Bool(true),
},
},
},
},
Storage: &dynatrace.OpenpipelineV2DavisProblemsPipelinesStorageArgs{
Processors: &dynatrace.OpenpipelineV2DavisProblemsPipelinesStorageProcessorsArgs{
Processors: dynatrace.OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorArray{
&dynatrace.OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorArgs{
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.OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorBucketAssignmentArgs{
BucketName: pulumi.String("default_davis_custom_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.OpenpipelineV2DavisProblemsPipelines("max-pipeline", new()
{
DisplayName = "Warning pipeline",
CustomId = "pipeline_Warning_pipeline_2773_tf_#name#",
MetadataList = new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesMetadataListArgs
{
Metadatas = new[]
{
new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesMetadataListMetadataArgs
{
EntryKey = "environment",
EntryValue = "production",
},
},
},
Processing = new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesProcessingArgs
{
Processors = new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsArgs
{
Processors = new[]
{
new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorArgs
{
Type = "drop",
Id = "processor_Drop_unnecessary_records_3802",
Description = "Drop unnecessary records",
Matcher = "not matchesPhrase(record.name, \"Warning\")",
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorArgs
{
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.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsAddArgs
{
Fields = new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs
{
Fields = new[]
{
new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs
{
Name = "is_warning",
Value = "true",
},
},
},
},
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorArgs
{
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.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs
{
Fields = new[]
{
"record.details",
},
},
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorArgs
{
Type = "fieldsRename",
Id = "processor_Rename_name_to_title_8530",
Description = "Rename name to title",
SampleData = @"{
""record.name"": ""Warning""
}",
Matcher = "true",
FieldsRename = new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRenameArgs
{
Fields = new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs
{
Fields = new[]
{
new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs
{
FromName = "record.name",
ToName = "record.title",
},
},
},
},
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorArgs
{
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.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorDqlArgs
{
Script = "fieldsAdd record.name = concat(record.title, \" - \", record.summary)",
},
Enabled = true,
},
},
},
},
SecurityContext = new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesSecurityContextArgs
{
Processors = new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsArgs
{
Processors = new[]
{
new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorArgs
{
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.OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs
{
Value = new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs
{
Type = "field",
Field = new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs
{
SourceFieldName = "dt.security_context",
},
},
},
Enabled = true,
},
new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorArgs
{
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.OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs
{
Value = new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs
{
Type = "multiValueConstant",
MultiValueConstants = new[]
{
"ACME1",
"ACME2",
},
},
},
Enabled = true,
},
},
},
},
Storage = new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesStorageArgs
{
Processors = new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesStorageProcessorsArgs
{
Processors = new[]
{
new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorArgs
{
Type = "bucketAssignment",
Id = "processor_Add_to_default_bucket_5010",
Description = "Add to default bucket",
Matcher = "true",
BucketAssignment = new Dynatrace.Inputs.OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorBucketAssignmentArgs
{
BucketName = "default_davis_custom_events",
},
Enabled = true,
},
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.dynatrace.OpenpipelineV2DavisProblemsPipelines;
import com.pulumi.dynatrace.OpenpipelineV2DavisProblemsPipelinesArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2DavisProblemsPipelinesMetadataListArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2DavisProblemsPipelinesMetadataListMetadataArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2DavisProblemsPipelinesProcessingArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsAddArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRenameArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorDqlArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2DavisProblemsPipelinesSecurityContextArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2DavisProblemsPipelinesStorageArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2DavisProblemsPipelinesStorageProcessorsArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorArgs;
import com.pulumi.dynatrace.inputs.OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorBucketAssignmentArgs;
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 OpenpipelineV2DavisProblemsPipelines("max-pipeline", OpenpipelineV2DavisProblemsPipelinesArgs.builder()
.displayName("Warning pipeline")
.customId("pipeline_Warning_pipeline_2773_tf_#name#")
.metadataList(OpenpipelineV2DavisProblemsPipelinesMetadataListArgs.builder()
.metadatas(OpenpipelineV2DavisProblemsPipelinesMetadataListMetadataArgs.builder()
.entryKey("environment")
.entryValue("production")
.build())
.build())
.processing(OpenpipelineV2DavisProblemsPipelinesProcessingArgs.builder()
.processors(OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsArgs.builder()
.processors(
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorArgs.builder()
.type("drop")
.id("processor_Drop_unnecessary_records_3802")
.description("Drop unnecessary records")
.matcher("not matchesPhrase(record.name, \"Warning\")")
.enabled(true)
.build(),
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorArgs.builder()
.type("fieldsAdd")
.id("processor_Add_warning_flag_5434")
.description("Add warning flag")
.matcher("matchesPhrase(record.name, \"Warning\")")
.sampleData("""
{
"record.name": "Warning record"
} """)
.fieldsAdd(OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsAddArgs.builder()
.fields(OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs.builder()
.fields(OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs.builder()
.name("is_warning")
.value("true")
.build())
.build())
.build())
.enabled(true)
.build(),
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorArgs.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(OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs.builder()
.fields("record.details")
.build())
.enabled(true)
.build(),
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorArgs.builder()
.type("fieldsRename")
.id("processor_Rename_name_to_title_8530")
.description("Rename name to title")
.sampleData("""
{
"record.name": "Warning"
} """)
.matcher("true")
.fieldsRename(OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRenameArgs.builder()
.fields(OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs.builder()
.fields(OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs.builder()
.fromName("record.name")
.toName("record.title")
.build())
.build())
.build())
.enabled(true)
.build(),
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorArgs.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(OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorDqlArgs.builder()
.script("fieldsAdd record.name = concat(record.title, \" - \", record.summary)")
.build())
.enabled(true)
.build())
.build())
.build())
.securityContext(OpenpipelineV2DavisProblemsPipelinesSecurityContextArgs.builder()
.processors(OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsArgs.builder()
.processors(
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorArgs.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(OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs.builder()
.value(OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs.builder()
.type("field")
.field(OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs.builder()
.sourceFieldName("dt.security_context")
.build())
.build())
.build())
.enabled(true)
.build(),
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorArgs.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(OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs.builder()
.value(OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs.builder()
.type("multiValueConstant")
.multiValueConstants(
"ACME1",
"ACME2")
.build())
.build())
.enabled(true)
.build())
.build())
.build())
.storage(OpenpipelineV2DavisProblemsPipelinesStorageArgs.builder()
.processors(OpenpipelineV2DavisProblemsPipelinesStorageProcessorsArgs.builder()
.processors(OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorArgs.builder()
.type("bucketAssignment")
.id("processor_Add_to_default_bucket_5010")
.description("Add to default bucket")
.matcher("true")
.bucketAssignment(OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorBucketAssignmentArgs.builder()
.bucketName("default_davis_custom_events")
.build())
.enabled(true)
.build())
.build())
.build())
.build());
}
}
resources:
max-pipeline:
type: dynatrace:OpenpipelineV2DavisProblemsPipelines
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
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_davis_custom_events
enabled: true
pulumi {
required_providers {
dynatrace = {
source = "pulumi/dynatrace"
}
}
}
resource "dynatrace_openpipelinev2davisproblemspipelines" "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
}]
}
}
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_davis_custom_events"
}
"enabled" = true
}]
}
}
}
Create OpenpipelineV2DavisProblemsPipelines Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OpenpipelineV2DavisProblemsPipelines(name: string, args: OpenpipelineV2DavisProblemsPipelinesArgs, opts?: CustomResourceOptions);@overload
def OpenpipelineV2DavisProblemsPipelines(resource_name: str,
args: OpenpipelineV2DavisProblemsPipelinesArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OpenpipelineV2DavisProblemsPipelines(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
custom_id: Optional[str] = None,
metadata_list: Optional[OpenpipelineV2DavisProblemsPipelinesMetadataListArgs] = None,
davis: Optional[OpenpipelineV2DavisProblemsPipelinesDavisArgs] = None,
data_extraction: Optional[OpenpipelineV2DavisProblemsPipelinesDataExtractionArgs] = None,
group_role: Optional[str] = None,
cost_allocation: Optional[OpenpipelineV2DavisProblemsPipelinesCostAllocationArgs] = None,
metric_extraction: Optional[OpenpipelineV2DavisProblemsPipelinesMetricExtractionArgs] = None,
processing: Optional[OpenpipelineV2DavisProblemsPipelinesProcessingArgs] = None,
product_allocation: Optional[OpenpipelineV2DavisProblemsPipelinesProductAllocationArgs] = None,
routing: Optional[str] = None,
security_context: Optional[OpenpipelineV2DavisProblemsPipelinesSecurityContextArgs] = None,
smartscape_edge_extraction: Optional[OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionArgs] = None,
smartscape_node_extraction: Optional[OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionArgs] = None,
storage: Optional[OpenpipelineV2DavisProblemsPipelinesStorageArgs] = None)func NewOpenpipelineV2DavisProblemsPipelines(ctx *Context, name string, args OpenpipelineV2DavisProblemsPipelinesArgs, opts ...ResourceOption) (*OpenpipelineV2DavisProblemsPipelines, error)public OpenpipelineV2DavisProblemsPipelines(string name, OpenpipelineV2DavisProblemsPipelinesArgs args, CustomResourceOptions? opts = null)
public OpenpipelineV2DavisProblemsPipelines(String name, OpenpipelineV2DavisProblemsPipelinesArgs args)
public OpenpipelineV2DavisProblemsPipelines(String name, OpenpipelineV2DavisProblemsPipelinesArgs args, CustomResourceOptions options)
type: dynatrace:OpenpipelineV2DavisProblemsPipelines
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "dynatrace_openpipeline_v2_davis_problems_pipelines" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args OpenpipelineV2DavisProblemsPipelinesArgs
- 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 OpenpipelineV2DavisProblemsPipelinesArgs
- 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 OpenpipelineV2DavisProblemsPipelinesArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OpenpipelineV2DavisProblemsPipelinesArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OpenpipelineV2DavisProblemsPipelinesArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
OpenpipelineV2DavisProblemsPipelines 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 OpenpipelineV2DavisProblemsPipelines resource accepts the following input properties:
- Custom
Id string - Custom pipeline id
- Display
Name string - Display name
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation - Cost allocation stage
- Data
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction - Data extraction stage
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis - Davis event extraction stage
- Group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - Metadata
List Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metadata List - Pipeline metadata list
- Metric
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction - Metrics extraction stage
- Processing
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing - Processing stage
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation - Product allocation stage
- Routing string
- Routing. Possible values:
notRoutable,routable - Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context - Security context stage
- Smartscape
Edge Pulumiverse.Extraction Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- Smartscape
Node Pulumiverse.Extraction Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- Storage
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage - Storage stage
- Custom
Id string - Custom pipeline id
- Display
Name string - Display name
- Cost
Allocation OpenpipelineV2Davis Problems Pipelines Cost Allocation Args - Cost allocation stage
- Data
Extraction OpenpipelineV2Davis Problems Pipelines Data Extraction Args - Data extraction stage
- Davis
Openpipeline
V2Davis Problems Pipelines Davis Args - Davis event extraction stage
- Group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - Metadata
List OpenpipelineV2Davis Problems Pipelines Metadata List Args - Pipeline metadata list
- Metric
Extraction OpenpipelineV2Davis Problems Pipelines Metric Extraction Args - Metrics extraction stage
- Processing
Openpipeline
V2Davis Problems Pipelines Processing Args - Processing stage
- Product
Allocation OpenpipelineV2Davis Problems Pipelines Product Allocation Args - Product allocation stage
- Routing string
- Routing. Possible values:
notRoutable,routable - Security
Context OpenpipelineV2Davis Problems Pipelines Security Context Args - Security context stage
- Smartscape
Edge OpenpipelineExtraction V2Davis Problems Pipelines Smartscape Edge Extraction Args - Smartscape edge extraction stage
- Smartscape
Node OpenpipelineExtraction V2Davis Problems Pipelines Smartscape Node Extraction Args - Smartscape node extraction stage
- Storage
Openpipeline
V2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Cost Allocation - Cost allocation stage
- data
Extraction OpenpipelineV2Davis Problems Pipelines Data Extraction - Data extraction stage
- davis
Openpipeline
V2Davis Problems Pipelines Davis - Davis event extraction stage
- group
Role String - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata
List OpenpipelineV2Davis Problems Pipelines Metadata List - Pipeline metadata list
- metric
Extraction OpenpipelineV2Davis Problems Pipelines Metric Extraction - Metrics extraction stage
- processing
Openpipeline
V2Davis Problems Pipelines Processing - Processing stage
- product
Allocation OpenpipelineV2Davis Problems Pipelines Product Allocation - Product allocation stage
- routing String
- Routing. Possible values:
notRoutable,routable - security
Context OpenpipelineV2Davis Problems Pipelines Security Context - Security context stage
- smartscape
Edge OpenpipelineExtraction V2Davis Problems Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- smartscape
Node OpenpipelineExtraction V2Davis Problems Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- storage
Openpipeline
V2Davis Problems Pipelines Storage - Storage stage
- custom
Id string - Custom pipeline id
- display
Name string - Display name
- cost
Allocation OpenpipelineV2Davis Problems Pipelines Cost Allocation - Cost allocation stage
- data
Extraction OpenpipelineV2Davis Problems Pipelines Data Extraction - Data extraction stage
- davis
Openpipeline
V2Davis Problems Pipelines Davis - Davis event extraction stage
- group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata
List OpenpipelineV2Davis Problems Pipelines Metadata List - Pipeline metadata list
- metric
Extraction OpenpipelineV2Davis Problems Pipelines Metric Extraction - Metrics extraction stage
- processing
Openpipeline
V2Davis Problems Pipelines Processing - Processing stage
- product
Allocation OpenpipelineV2Davis Problems Pipelines Product Allocation - Product allocation stage
- routing string
- Routing. Possible values:
notRoutable,routable - security
Context OpenpipelineV2Davis Problems Pipelines Security Context - Security context stage
- smartscape
Edge OpenpipelineExtraction V2Davis Problems Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- smartscape
Node OpenpipelineExtraction V2Davis Problems Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- storage
Openpipeline
V2Davis Problems Pipelines Storage - Storage stage
- custom_
id str - Custom pipeline id
- display_
name str - Display name
- cost_
allocation OpenpipelineV2Davis Problems Pipelines Cost Allocation Args - Cost allocation stage
- data_
extraction OpenpipelineV2Davis Problems Pipelines Data Extraction Args - Data extraction stage
- davis
Openpipeline
V2Davis Problems Pipelines Davis Args - Davis event extraction stage
- group_
role str - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata_
list OpenpipelineV2Davis Problems Pipelines Metadata List Args - Pipeline metadata list
- metric_
extraction OpenpipelineV2Davis Problems Pipelines Metric Extraction Args - Metrics extraction stage
- processing
Openpipeline
V2Davis Problems Pipelines Processing Args - Processing stage
- product_
allocation OpenpipelineV2Davis Problems Pipelines Product Allocation Args - Product allocation stage
- routing str
- Routing. Possible values:
notRoutable,routable - security_
context OpenpipelineV2Davis Problems Pipelines Security Context Args - Security context stage
- smartscape_
edge_ Openpipelineextraction V2Davis Problems Pipelines Smartscape Edge Extraction Args - Smartscape edge extraction stage
- smartscape_
node_ Openpipelineextraction V2Davis Problems Pipelines Smartscape Node Extraction Args - Smartscape node extraction stage
- storage
Openpipeline
V2Davis Problems 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 OpenpipelineV2DavisProblemsPipelines 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 OpenpipelineV2DavisProblemsPipelines Resource
Get an existing OpenpipelineV2DavisProblemsPipelines 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?: OpenpipelineV2DavisProblemsPipelinesState, opts?: CustomResourceOptions): OpenpipelineV2DavisProblemsPipelines@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cost_allocation: Optional[OpenpipelineV2DavisProblemsPipelinesCostAllocationArgs] = None,
custom_id: Optional[str] = None,
data_extraction: Optional[OpenpipelineV2DavisProblemsPipelinesDataExtractionArgs] = None,
davis: Optional[OpenpipelineV2DavisProblemsPipelinesDavisArgs] = None,
display_name: Optional[str] = None,
group_role: Optional[str] = None,
metadata_list: Optional[OpenpipelineV2DavisProblemsPipelinesMetadataListArgs] = None,
metric_extraction: Optional[OpenpipelineV2DavisProblemsPipelinesMetricExtractionArgs] = None,
processing: Optional[OpenpipelineV2DavisProblemsPipelinesProcessingArgs] = None,
product_allocation: Optional[OpenpipelineV2DavisProblemsPipelinesProductAllocationArgs] = None,
routing: Optional[str] = None,
security_context: Optional[OpenpipelineV2DavisProblemsPipelinesSecurityContextArgs] = None,
smartscape_edge_extraction: Optional[OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionArgs] = None,
smartscape_node_extraction: Optional[OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionArgs] = None,
storage: Optional[OpenpipelineV2DavisProblemsPipelinesStorageArgs] = None) -> OpenpipelineV2DavisProblemsPipelinesfunc GetOpenpipelineV2DavisProblemsPipelines(ctx *Context, name string, id IDInput, state *OpenpipelineV2DavisProblemsPipelinesState, opts ...ResourceOption) (*OpenpipelineV2DavisProblemsPipelines, error)public static OpenpipelineV2DavisProblemsPipelines Get(string name, Input<string> id, OpenpipelineV2DavisProblemsPipelinesState? state, CustomResourceOptions? opts = null)public static OpenpipelineV2DavisProblemsPipelines get(String name, Output<String> id, OpenpipelineV2DavisProblemsPipelinesState state, CustomResourceOptions options)resources: _: type: dynatrace:OpenpipelineV2DavisProblemsPipelines get: id: ${id}import {
to = dynatrace_openpipeline_v2_davis_problems_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 V2Davis Problems Pipelines Cost Allocation - Cost allocation stage
- Custom
Id string - Custom pipeline id
- Data
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction - Data extraction stage
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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 V2Davis Problems Pipelines Metadata List - Pipeline metadata list
- Metric
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction - Metrics extraction stage
- Processing
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing - Processing stage
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation - Product allocation stage
- Routing string
- Routing. Possible values:
notRoutable,routable - Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context - Security context stage
- Smartscape
Edge Pulumiverse.Extraction Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- Smartscape
Node Pulumiverse.Extraction Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- Storage
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage - Storage stage
- Cost
Allocation OpenpipelineV2Davis Problems Pipelines Cost Allocation Args - Cost allocation stage
- Custom
Id string - Custom pipeline id
- Data
Extraction OpenpipelineV2Davis Problems Pipelines Data Extraction Args - Data extraction stage
- Davis
Openpipeline
V2Davis Problems Pipelines Davis Args - Davis event extraction stage
- Display
Name string - Display name
- Group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - Metadata
List OpenpipelineV2Davis Problems Pipelines Metadata List Args - Pipeline metadata list
- Metric
Extraction OpenpipelineV2Davis Problems Pipelines Metric Extraction Args - Metrics extraction stage
- Processing
Openpipeline
V2Davis Problems Pipelines Processing Args - Processing stage
- Product
Allocation OpenpipelineV2Davis Problems Pipelines Product Allocation Args - Product allocation stage
- Routing string
- Routing. Possible values:
notRoutable,routable - Security
Context OpenpipelineV2Davis Problems Pipelines Security Context Args - Security context stage
- Smartscape
Edge OpenpipelineExtraction V2Davis Problems Pipelines Smartscape Edge Extraction Args - Smartscape edge extraction stage
- Smartscape
Node OpenpipelineExtraction V2Davis Problems Pipelines Smartscape Node Extraction Args - Smartscape node extraction stage
- Storage
Openpipeline
V2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Cost Allocation - Cost allocation stage
- custom
Id String - Custom pipeline id
- data
Extraction OpenpipelineV2Davis Problems Pipelines Data Extraction - Data extraction stage
- davis
Openpipeline
V2Davis Problems Pipelines Davis - Davis event extraction stage
- display
Name String - Display name
- group
Role String - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata
List OpenpipelineV2Davis Problems Pipelines Metadata List - Pipeline metadata list
- metric
Extraction OpenpipelineV2Davis Problems Pipelines Metric Extraction - Metrics extraction stage
- processing
Openpipeline
V2Davis Problems Pipelines Processing - Processing stage
- product
Allocation OpenpipelineV2Davis Problems Pipelines Product Allocation - Product allocation stage
- routing String
- Routing. Possible values:
notRoutable,routable - security
Context OpenpipelineV2Davis Problems Pipelines Security Context - Security context stage
- smartscape
Edge OpenpipelineExtraction V2Davis Problems Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- smartscape
Node OpenpipelineExtraction V2Davis Problems Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- storage
Openpipeline
V2Davis Problems Pipelines Storage - Storage stage
- cost
Allocation OpenpipelineV2Davis Problems Pipelines Cost Allocation - Cost allocation stage
- custom
Id string - Custom pipeline id
- data
Extraction OpenpipelineV2Davis Problems Pipelines Data Extraction - Data extraction stage
- davis
Openpipeline
V2Davis Problems Pipelines Davis - Davis event extraction stage
- display
Name string - Display name
- group
Role string - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata
List OpenpipelineV2Davis Problems Pipelines Metadata List - Pipeline metadata list
- metric
Extraction OpenpipelineV2Davis Problems Pipelines Metric Extraction - Metrics extraction stage
- processing
Openpipeline
V2Davis Problems Pipelines Processing - Processing stage
- product
Allocation OpenpipelineV2Davis Problems Pipelines Product Allocation - Product allocation stage
- routing string
- Routing. Possible values:
notRoutable,routable - security
Context OpenpipelineV2Davis Problems Pipelines Security Context - Security context stage
- smartscape
Edge OpenpipelineExtraction V2Davis Problems Pipelines Smartscape Edge Extraction - Smartscape edge extraction stage
- smartscape
Node OpenpipelineExtraction V2Davis Problems Pipelines Smartscape Node Extraction - Smartscape node extraction stage
- storage
Openpipeline
V2Davis Problems Pipelines Storage - Storage stage
- cost_
allocation OpenpipelineV2Davis Problems Pipelines Cost Allocation Args - Cost allocation stage
- custom_
id str - Custom pipeline id
- data_
extraction OpenpipelineV2Davis Problems Pipelines Data Extraction Args - Data extraction stage
- davis
Openpipeline
V2Davis Problems Pipelines Davis Args - Davis event extraction stage
- display_
name str - Display name
- group_
role str - Group role. Possible values:
basePipeline,compositionPipeline,memberPipeline - metadata_
list OpenpipelineV2Davis Problems Pipelines Metadata List Args - Pipeline metadata list
- metric_
extraction OpenpipelineV2Davis Problems Pipelines Metric Extraction Args - Metrics extraction stage
- processing
Openpipeline
V2Davis Problems Pipelines Processing Args - Processing stage
- product_
allocation OpenpipelineV2Davis Problems Pipelines Product Allocation Args - Product allocation stage
- routing str
- Routing. Possible values:
notRoutable,routable - security_
context OpenpipelineV2Davis Problems Pipelines Security Context Args - Security context stage
- smartscape_
edge_ Openpipelineextraction V2Davis Problems Pipelines Smartscape Edge Extraction Args - Smartscape edge extraction stage
- smartscape_
node_ Openpipelineextraction V2Davis Problems Pipelines Smartscape Node Extraction Args - Smartscape node extraction stage
- storage
Openpipeline
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocation, OpenpipelineV2DavisProblemsPipelinesCostAllocationArgs
- Processors
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors - Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors - Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessors, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsArgs
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessor, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorArgs
- 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 V2Davis Problems Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems 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 V2Davis Problems Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Cost Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Davis Problems Pipelines Cost Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Davis Problems Pipelines Cost Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Davis Problems Pipelines Cost Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorAzureLogForwarding, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorBizevent, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorBizeventEventProvider, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderField, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorBizeventEventType, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeField, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorBucketAssignment, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorCostAllocation, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorCostAllocationValue, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorCostAllocationValueField, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorCounterMetric, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Davis Problems 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
V2Davis Problems Pipelines Cost Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorCounterMetricDimensions, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorDavis, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorDavisProperties, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorDql, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorDqlArgs
- 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorFieldsAdd, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorFieldsAddFields, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorFieldsRemove, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorFieldsRename, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorFieldsRenameFields, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorGeoLookup, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorHistogramMetric, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorInlineLookup, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorProductAllocation, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorProductAllocationValue, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorProductAllocationValueField, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- 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 V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- 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 V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSdlcEvent, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSdlcEventEventType, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSecurityContext, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Cost Allocation Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSecurityContextValue, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSecurityContextValueField, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSecurityEvent, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSmartscapeEdge, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSmartscapeNode, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems 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 V2Davis Problems Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Cost Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Davis Problems 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 OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Davis Problems Pipelines Cost Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Davis Problems Pipelines Cost Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Cost Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Davis Problems Pipelines Cost Allocation Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorTechnology, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorValueMetric, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorValueMetricDimensions, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesCostAllocationProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesDataExtraction, OpenpipelineV2DavisProblemsPipelinesDataExtractionArgs
- Processors
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors - Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors - Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessors, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsArgs
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessor, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorArgs
- 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 V2Davis Problems Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems 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 V2Davis Problems Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Data Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Davis Problems Pipelines Data Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Davis Problems Pipelines Data Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Davis Problems Pipelines Data Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorBizevent, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorCostAllocation, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorCounterMetric, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Davis Problems 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
V2Davis Problems Pipelines Data Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorDavis, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorDavisProperties, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorDql, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorDqlArgs
- 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorFieldsRename, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorGeoLookup, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorInlineLookup, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorProductAllocation, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- 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 V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- 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 V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSecurityContext, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Data Extraction Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems 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 V2Davis Problems Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Data Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Davis Problems 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 OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Davis Problems Pipelines Data Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Davis Problems Pipelines Data Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Data Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Davis Problems Pipelines Data Extraction Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorTechnology, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorValueMetric, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesDataExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesDavis, OpenpipelineV2DavisProblemsPipelinesDavisArgs
- Processors
Openpipeline
V2Davis Problems Pipelines Davis Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Davis Processors - Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Davis Processors - Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Davis Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2DavisProblemsPipelinesDavisProcessors, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsArgs
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessor, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorArgs
- 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 V2Davis Problems Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems 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 V2Davis Problems Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Davis Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Davis Problems Pipelines Davis Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Davis Problems Pipelines Davis Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Davis Problems Pipelines Davis Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorAzureLogForwarding, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorBizevent, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorBizeventEventProvider, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorBizeventEventProviderField, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorBizeventEventType, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorBizeventEventTypeField, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Bizevent Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Davis Problems 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
V2Davis Problems Pipelines Davis Processors Processor Bizevent Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorBucketAssignment, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorCostAllocation, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorCostAllocationValue, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorCostAllocationValueField, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorCounterMetric, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Davis Problems 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
V2Davis Problems Pipelines Davis Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorCounterMetricDimensions, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorDavis, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorDavisProperties, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorDql, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorDqlArgs
- 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorFieldsAdd, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorFieldsAddFields, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorFieldsRemove, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorFieldsRename, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorFieldsRenameFields, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorGeoLookup, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorHistogramMetric, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorInlineLookup, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorProductAllocation, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Product Allocation Value - The strategy to set product allocation field
- value Property Map
- The strategy to set product allocation field
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorProductAllocationValue, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorProductAllocationValueField, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- 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 V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- 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 V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSdlcEvent, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSdlcEventEventType, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSecurityContext, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Davis Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSecurityContextValue, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSecurityContextValueField, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSecurityEvent, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSmartscapeEdge, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSmartscapeNode, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems 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 V2Davis Problems Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Davis Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Davis Problems 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 OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Davis Problems Pipelines Davis Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Davis Problems Pipelines Davis Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Davis Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Davis Problems Pipelines Davis Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorTechnology, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorValueMetric, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorValueMetricDimensions, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesDavisProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesMetadataList, OpenpipelineV2DavisProblemsPipelinesMetadataListArgs
OpenpipelineV2DavisProblemsPipelinesMetadataListMetadata, OpenpipelineV2DavisProblemsPipelinesMetadataListMetadataArgs
- 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
OpenpipelineV2DavisProblemsPipelinesMetricExtraction, OpenpipelineV2DavisProblemsPipelinesMetricExtractionArgs
- Processors
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors - Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors - Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessors, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsArgs
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessor, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorArgs
- 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 V2Davis Problems Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems 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 V2Davis Problems Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Metric Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Davis Problems Pipelines Metric Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Davis Problems Pipelines Metric Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Davis Problems Pipelines Metric Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorBizevent, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorCostAllocation, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorCounterMetric, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Davis Problems 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
V2Davis Problems Pipelines Metric Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorDavis, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorDavisProperties, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorDql, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorDqlArgs
- 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorFieldsRename, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorGeoLookup, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorInlineLookup, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorProductAllocation, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- 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 V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- 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 V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSecurityContext, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Metric Extraction Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems 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 V2Davis Problems Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Metric Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Davis Problems 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 OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Davis Problems Pipelines Metric Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Davis Problems Pipelines Metric Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Metric Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Davis Problems Pipelines Metric Extraction Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorTechnology, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorValueMetric, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesMetricExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesProcessing, OpenpipelineV2DavisProblemsPipelinesProcessingArgs
- Processors
Openpipeline
V2Davis Problems Pipelines Processing Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Processing Processors - Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Processing Processors - Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Processing Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2DavisProblemsPipelinesProcessingProcessors, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsArgs
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessor, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorArgs
- 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 V2Davis Problems Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems 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 V2Davis Problems Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Processing Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Davis Problems Pipelines Processing Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Davis Problems Pipelines Processing Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Davis Problems Pipelines Processing Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorAzureLogForwarding, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorBizevent, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorBizeventEventProvider, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorBizeventEventProviderField, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorBizeventEventType, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorBizeventEventTypeField, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Bizevent Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Davis Problems 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
V2Davis Problems Pipelines Processing Processors Processor Bizevent Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorBucketAssignment, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorCostAllocation, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorCostAllocationValue, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorCostAllocationValueField, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorCounterMetric, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Davis Problems 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
V2Davis Problems Pipelines Processing Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorCounterMetricDimensions, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorDavis, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorDavisProperties, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorDql, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorDqlArgs
- 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsAdd, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsAddFields, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRemove, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRename, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRenameFields, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorGeoLookup, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorHistogramMetric, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorInlineLookup, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorProductAllocation, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Product Allocation Value - The strategy to set product allocation field
- value Property Map
- The strategy to set product allocation field
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorProductAllocationValue, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorProductAllocationValueField, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- 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 V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- 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 V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSdlcEvent, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSdlcEventEventType, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSecurityContext, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Processing Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSecurityContextValue, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSecurityContextValueField, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSecurityEvent, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSmartscapeEdge, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSmartscapeNode, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems 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 V2Davis Problems Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Processing Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Davis Problems 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 OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Davis Problems Pipelines Processing Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Davis Problems Pipelines Processing Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Processing Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Davis Problems Pipelines Processing Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorTechnology, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorValueMetric, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorValueMetricDimensions, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesProcessingProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesProductAllocation, OpenpipelineV2DavisProblemsPipelinesProductAllocationArgs
- Processors
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors - Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors - Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessors, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsArgs
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessor, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorArgs
- 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 V2Davis Problems Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems 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 V2Davis Problems Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Product Allocation Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Davis Problems Pipelines Product Allocation Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Davis Problems Pipelines Product Allocation Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Davis Problems Pipelines Product Allocation Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorAzureLogForwarding, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorBizevent, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorBizeventEventProvider, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorBizeventEventProviderField, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorBizeventEventType, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorBizeventEventTypeField, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorBucketAssignment, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorCostAllocation, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorCostAllocationValue, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorCostAllocationValueField, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorCounterMetric, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Davis Problems 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
V2Davis Problems Pipelines Product Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorCounterMetricDimensions, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorDavis, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorDavisProperties, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorDql, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorDqlArgs
- 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorFieldsAdd, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorFieldsAddFields, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorFieldsRemove, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorFieldsRename, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorFieldsRenameFields, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorGeoLookup, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorHistogramMetric, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorInlineLookup, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorProductAllocation, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorProductAllocationValue, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorProductAllocationValueField, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- 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 V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- 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 V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSdlcEvent, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSdlcEventEventType, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSecurityContext, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Product Allocation Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSecurityContextValue, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSecurityContextValueField, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSecurityEvent, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSmartscapeEdge, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSmartscapeNode, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems 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 V2Davis Problems Pipelines Product Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Product Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Product Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Davis Problems 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 OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Product Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Davis Problems Pipelines Product Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Product Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Davis Problems Pipelines Product Allocation Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Product Allocation Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Davis Problems Pipelines Product Allocation Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorTechnology, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorValueMetric, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorValueMetricDimensions, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesProductAllocationProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSecurityContext, OpenpipelineV2DavisProblemsPipelinesSecurityContextArgs
- Processors
Openpipeline
V2Davis Problems Pipelines Security Context Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Security Context Processors - Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Security Context Processors - Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Security Context Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessors, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsArgs
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessor, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorArgs
- 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 V2Davis Problems Pipelines Security Context Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems 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 V2Davis Problems Pipelines Security Context Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Security Context Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Security Context Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Security Context Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Security Context Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Security Context Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Security Context Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Security Context Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Security Context Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Security Context Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Security Context Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Security Context Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Security Context Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Davis Problems Pipelines Security Context Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Davis Problems Pipelines Security Context Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Davis Problems Pipelines Security Context Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorAzureLogForwarding, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorBizevent, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorBizeventEventProvider, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorBizeventEventProviderField, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorBizeventEventType, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorBizeventEventTypeField, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorBucketAssignment, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorCostAllocation, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorCostAllocationValue, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorCostAllocationValueField, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorCounterMetric, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Davis Problems 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
V2Davis Problems Pipelines Security Context Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorCounterMetricDimensions, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorDavis, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorDavisProperties, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorDql, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorDqlArgs
- 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorFieldsAdd, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorFieldsAddFields, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorFieldsRemove, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorFieldsRename, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorFieldsRenameFields, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorGeoLookup, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorHistogramMetric, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorInlineLookup, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorProductAllocation, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorProductAllocationValue, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorProductAllocationValueField, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- 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 V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- 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 V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSdlcEvent, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSdlcEventEventType, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityContext, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Security Context Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityContextValue, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityContextValueField, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityEvent, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSmartscapeEdge, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSmartscapeNode, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems 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 V2Davis Problems Pipelines Security Context Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Security Context Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Security Context Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Davis Problems 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 OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Security Context Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Davis Problems Pipelines Security Context Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Security Context Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Davis Problems Pipelines Security Context Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Security Context Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Davis Problems Pipelines Security Context Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorTechnology, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorValueMetric, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorValueMetricDimensions, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesSecurityContextProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtraction, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionArgs
- Processors
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors - Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors - Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessors, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessor, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorArgs
- 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 V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems 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 V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems 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 V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizevent, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocation, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetric, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Davis Problems 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
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavis, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisProperties, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDql, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorDqlArgs
- 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRename, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorGeoLookup, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorInlineLookup, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocation, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- 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 V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- 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 V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContext, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems 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 V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Davis Problems 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 OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Davis Problems Pipelines Smartscape Edge Extraction Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorTechnology, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetric, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesSmartscapeEdgeExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtraction, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionArgs
- Processors
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors - Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors - Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessors, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessor, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorArgs
- 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 V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems 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 V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems 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 V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwarding, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizevent, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProvider, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProviderField, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventType, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventTypeField, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorBucketAssignment, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocation, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValue, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValueField, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetric, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Davis Problems 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
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricDimensions, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavis, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisProperties, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorDql, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorDqlArgs
- 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAdd, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddFields, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRemove, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRename, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameFields, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorGeoLookup, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetric, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorInlineLookup, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocation, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValue, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValueField, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- 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 V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- 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 V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEvent, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventType, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContext, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValue, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValueField, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEvent, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeEdge, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNode, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems 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 V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Davis Problems 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 OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Davis Problems Pipelines Smartscape Node Extraction Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorTechnology, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetric, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensions, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesSmartscapeNodeExtractionProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesStorage, OpenpipelineV2DavisProblemsPipelinesStorageArgs
- Processors
Openpipeline
V2Davis Problems Pipelines Storage Processors - Processors of stage
- processors object
- Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Storage Processors - Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Storage Processors - Processors of stage
- processors
Openpipeline
V2Davis Problems Pipelines Storage Processors - Processors of stage
- processors Property Map
- Processors of stage
OpenpipelineV2DavisProblemsPipelinesStorageProcessors, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsArgs
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessor, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorArgs
- 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 V2Davis Problems Pipelines Storage Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Davis - Davis event extraction processor attributes
- Dql
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Dql - DQL processor attributes
- Fields
Add Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware Pulumiverse.Counter Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware Pulumiverse.Histogram Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware Pulumiverse.Value Metric Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Security Context - Security context processor attributes
- Security
Event Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Technology - Technology processor attributes
- Value
Metric Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems 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 V2Davis Problems Pipelines Storage Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- Bizevent
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Bizevent - Bizevent extraction processor attributes
- Bucket
Assignment OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Bucket Assignment - Bucket assignment processor attributes
- Cost
Allocation OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Cost Allocation - Cost allocation processor attributes
- Counter
Metric OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Counter Metric - Counter metric processor attributes
- Davis
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Davis - Davis event extraction processor attributes
- Dql
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Dql - DQL processor attributes
- Fields
Add OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Fields Add - Fields add processor attributes
- Fields
Remove OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Fields Remove - Fields remove processor attributes
- Fields
Rename OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Fields Rename - Fields rename processor attributes
- Geo
Lookup OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Geo Lookup - Geo lookup processor attributes
- Histogram
Metric OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Histogram Metric - Histogram metric processor attributes
- Inline
Lookup OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Inline Lookup - Inline lookup processor attributes
- Matcher string
- See our documentation
- Product
Allocation OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Product Allocation - Product allocation processor attributes
- Sample
Data string - Sample data
- Sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Storage Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- Sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Storage Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- Sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Storage Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- Sdlc
Event OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- Security
Context OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Security Context - Security context processor attributes
- Security
Event OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Security Event - Security event extraction processor attributes
- Smartscape
Edge OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- Smartscape
Node OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- Technology
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Technology - Technology processor attributes
- Value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Storage Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher String
- See our documentation
- product
Allocation OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data String - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Storage Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Storage Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Storage Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Storage Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket
Assignment OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost
Allocation OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Cost Allocation - Cost allocation processor attributes
- counter
Metric OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Dql - DQL processor attributes
- fields
Add OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Fields Add - Fields add processor attributes
- fields
Remove OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Fields Remove - Fields remove processor attributes
- fields
Rename OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Fields Rename - Fields rename processor attributes
- geo
Lookup OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram
Metric OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Histogram Metric - Histogram metric processor attributes
- inline
Lookup OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher string
- See our documentation
- product
Allocation OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Product Allocation - Product allocation processor attributes
- sample
Data string - Sample data
- sampling
Aware OpenpipelineCounter Metric V2Davis Problems Pipelines Storage Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling
Aware OpenpipelineHistogram Metric V2Davis Problems Pipelines Storage Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling
Aware OpenpipelineValue Metric V2Davis Problems Pipelines Storage Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc
Event OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security
Context OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Security Context - Security context processor attributes
- security
Event OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Security Event - Security event extraction processor attributes
- smartscape
Edge OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape
Node OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Technology - Technology processor attributes
- value
Metric OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Storage Processors Processor Azure Log Forwarding - Azure log forwarding processor attributes
- bizevent
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Bizevent - Bizevent extraction processor attributes
- bucket_
assignment OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Bucket Assignment - Bucket assignment processor attributes
- cost_
allocation OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Cost Allocation - Cost allocation processor attributes
- counter_
metric OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Counter Metric - Counter metric processor attributes
- davis
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Davis - Davis event extraction processor attributes
- dql
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Dql - DQL processor attributes
- fields_
add OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Fields Add - Fields add processor attributes
- fields_
remove OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Fields Remove - Fields remove processor attributes
- fields_
rename OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Fields Rename - Fields rename processor attributes
- geo_
lookup OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Geo Lookup - Geo lookup processor attributes
- histogram_
metric OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Histogram Metric - Histogram metric processor attributes
- inline_
lookup OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Inline Lookup - Inline lookup processor attributes
- matcher str
- See our documentation
- product_
allocation OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Product Allocation - Product allocation processor attributes
- sample_
data str - Sample data
- sampling_
aware_ Openpipelinecounter_ metric V2Davis Problems Pipelines Storage Processors Processor Sampling Aware Counter Metric - Sampling-aware counter metric processor attributes
- sampling_
aware_ Openpipelinehistogram_ metric V2Davis Problems Pipelines Storage Processors Processor Sampling Aware Histogram Metric - Sampling aware histogram metric processor attributes
- sampling_
aware_ Openpipelinevalue_ metric V2Davis Problems Pipelines Storage Processors Processor Sampling Aware Value Metric - Sampling aware value metric processor attributes
- sdlc_
event OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Sdlc Event - SdlcEvent extraction processor attributes
- security_
context OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Security Context - Security context processor attributes
- security_
event OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Security Event - Security event extraction processor attributes
- smartscape_
edge OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Smartscape Edge - Smartscape edge extraction processor attributes
- smartscape_
node OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Smartscape Node - Smartscape node extraction processor attributes
- technology
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Technology - Technology processor attributes
- value_
metric OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorAzureLogForwarding, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorAzureLogForwardingArgs
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- Forwarder
Config stringId - No documentation available
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config StringId - No documentation available
- field
Extraction OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Azure Log Forwarding Field Extraction - Field Extraction
- forwarder
Config stringId - No documentation available
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtraction, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorAzureLogForwardingFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorBizevent, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorBizeventArgs
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Bizevent Event Provider - Event provider
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Bizevent Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Bizevent Field Extraction - Field extraction
- Event
Provider OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Bizevent Event Provider - Event provider
- Event
Type OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Bizevent Event Type - Event type
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Bizevent Field Extraction - Field extraction
- event
Provider OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Bizevent Event Provider - Event provider
- event
Type OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Bizevent Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Bizevent Field Extraction - Field extraction
- event_
provider OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Bizevent Event Provider - Event provider
- event_
type OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Bizevent Event Type - Event type
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorBizeventEventProvider, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorBizeventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorBizeventEventProviderField, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorBizeventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorBizeventEventType, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorBizeventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorBizeventEventTypeField, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorBizeventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorBizeventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorBizeventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Bizevent Field Extraction Include - Fields
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes []string
- Fields
- Include
Openpipeline
V2Davis Problems 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
V2Davis Problems Pipelines Storage Processors Processor Bizevent Field Extraction Include - Fields
- type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - excludes string[]
- Fields
- include
Openpipeline
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorBizeventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorBizeventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorBizeventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorBizeventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorBucketAssignment, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorBucketAssignmentArgs
- 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorCostAllocation, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorCostAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- Value
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Cost Allocation Value - The strategy to set the cost allocation field
- value
Openpipeline
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorCostAllocationValue, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorCostAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorCostAllocationValueField, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorCostAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorCounterMetric, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorCounterMetricArgs
- Metric
Key string - Metric key
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Counter Metric Dimensions - List of dimensions
- Metric
Key string - Metric key
- Dimensions
Openpipeline
V2Davis Problems 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
V2Davis Problems Pipelines Storage Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key string - Metric key
- dimensions
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Counter Metric Dimensions - List of dimensions
- metric_
key str - Metric key
- dimensions
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Counter Metric Dimensions - List of dimensions
- metric
Key String - Metric key
- dimensions Property Map
- List of dimensions
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorCounterMetricDimensions, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorCounterMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorCounterMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorDavis, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorDavisArgs
- Properties
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Davis Properties - No documentation available
- properties object
- No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Davis Properties - No documentation available
- properties
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Davis Properties - No documentation available
- properties Property Map
- No documentation available
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorDavisProperties, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorDavisPropertiesArgs
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorDavisPropertiesProperty, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorDavisPropertiesPropertyArgs
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorDql, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorDqlArgs
- 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorFieldsAdd, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorFieldsAddArgs
- fields Property Map
- Fields to Add
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorFieldsAddFields, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorFieldsAddFieldsArgs
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorFieldsAddFieldsField, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorFieldsAddFieldsFieldArgs
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorFieldsRemove, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorFieldsRemoveArgs
- 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorFieldsRename, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorFieldsRenameArgs
- fields Property Map
- Fields to rename
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorFieldsRenameFields, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorFieldsRenameFieldsArgs
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorFieldsRenameFieldsField, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorFieldsRenameFieldsFieldArgs
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorGeoLookup, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorGeoLookupArgs
- 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorHistogramMetric, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorHistogramMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorHistogramMetricDimensions, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorHistogramMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorHistogramMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorInlineLookup, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorInlineLookupArgs
- 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.
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorProductAllocation, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorProductAllocationArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Product Allocation Value - The strategy to set product allocation field
- Value
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Product Allocation Value - The strategy to set product allocation field
- value
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Product Allocation Value - The strategy to set product allocation field
- value Property Map
- The strategy to set product allocation field
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorProductAllocationValue, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorProductAllocationValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorProductAllocationValueField, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorProductAllocationValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetric, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricArgs
- Metric
Key string - Metric key
- Aggregation string
- Possible values:
disabled,enabled - Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensions, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSamplingAwareCounterMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetric, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricArgs
- Measurement string
- 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 V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensions, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSamplingAwareHistogramMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSamplingAwareValueMetric, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricArgs
- Measurement string
- 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 V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensions, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSamplingAwareValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSdlcEvent, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSdlcEventArgs
- Event
Category Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Sdlc Event Event Category - Event category
- Event
Provider Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Sdlc Event Event Status - Event status
- Event
Type Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Sdlc Event Field Extraction - Field extraction
- Event
Category OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Sdlc Event Event Category - Event category
- Event
Provider OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Sdlc Event Event Provider - Event provider
- Event
Status OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Sdlc Event Event Status - Event status
- Event
Type OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Sdlc Event Event Type - Event type
- Field
Extraction OpenpipelineV2Davis Problems 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 OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Sdlc Event Field Extraction - Field extraction
- event
Category OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Sdlc Event Event Category - Event category
- event
Provider OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Sdlc Event Event Provider - Event provider
- event
Status OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Sdlc Event Event Status - Event status
- event
Type OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Sdlc Event Event Type - Event type
- field
Extraction OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Sdlc Event Field Extraction - Field extraction
- event_
category OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Sdlc Event Event Category - Event category
- event_
provider OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Sdlc Event Event Provider - Event provider
- event_
status OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Sdlc Event Event Status - Event status
- event_
type OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Sdlc Event Event Type - Event type
- field_
extraction OpenpipelineV2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSdlcEventEventCategory, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSdlcEventEventCategoryArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSdlcEventEventCategoryField, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSdlcEventEventCategoryFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSdlcEventEventProvider, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSdlcEventEventProviderArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSdlcEventEventProviderField, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSdlcEventEventProviderFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSdlcEventEventStatus, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSdlcEventEventStatusArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSdlcEventEventStatusField, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSdlcEventEventStatusFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSdlcEventEventType, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSdlcEventEventTypeArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSdlcEventEventTypeField, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSdlcEventEventTypeFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSdlcEventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSdlcEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSecurityContext, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSecurityContextArgs
- Value
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Security Context Value - Security context value assignment
- Value
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Security Context Value - Security context value assignment
- value
Openpipeline
V2Davis Problems Pipelines Storage Processors Processor Security Context Value - Security context value assignment
- value Property Map
- Security context value assignment
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSecurityContextValue, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSecurityContextValueArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSecurityContextValueField, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSecurityContextValueFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSecurityEvent, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSecurityEventArgs
- field_
extraction object - Field Extraction
- field
Extraction Property Map - Field Extraction
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSecurityEventFieldExtraction, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionArgs
- Type string
- Fields Extraction type. Possible values:
exclude,include,includeAll - Excludes List<string>
- Fields
- Include
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionInclude, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionIncludeArgs
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionIncludeDimension, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSecurityEventFieldExtractionIncludeDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSmartscapeEdge, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSmartscapeEdgeArgs
- 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSmartscapeNode, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSmartscapeNodeArgs
- Extract
Node bool - Extract node
- Id
Components Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems 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 V2Davis Problems Pipelines Storage Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name Pulumiverse.Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Smartscape Node Node Name - Node name
- Static
Edges Pulumiverse.To Extract Dynatrace. Inputs. Openpipeline V2Davis Problems Pipelines Storage Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- Extract
Node bool - Extract node
- Id
Components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Storage Processors Processor Smartscape Node Fields To Extract - Fields to extract
- Node
Name OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Smartscape Node Node Name - Node name
- Static
Edges OpenpipelineTo Extract V2Davis Problems 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 OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Storage Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Davis Problems Pipelines Storage Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract
Node boolean - Extract node
- id
Components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Storage Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node
Name OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Smartscape Node Node Name - Node name
- static
Edges OpenpipelineTo Extract V2Davis Problems Pipelines Storage Processors Processor Smartscape Node Static Edges To Extract - Static edges to extract
- extract_
node bool - Extract node
- id_
components OpenpipelineV2Davis Problems 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 V2Davis Problems Pipelines Storage Processors Processor Smartscape Node Fields To Extract - Fields to extract
- node_
name OpenpipelineV2Davis Problems Pipelines Storage Processors Processor Smartscape Node Node Name - Node name
- static_
edges_ Openpipelineto_ extract V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSmartscapeNodeFieldsToExtract, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSmartscapeNodeFieldsToExtractArgs
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntry, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSmartscapeNodeFieldsToExtractSmartscapeFieldExtractionEntryArgs
- 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSmartscapeNodeIdComponents, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSmartscapeNodeIdComponentsArgs
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSmartscapeNodeIdComponentsIdComponent, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSmartscapeNodeIdComponentsIdComponentArgs
- 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSmartscapeNodeNodeName, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSmartscapeNodeNodeNameArgs
- Type string
- Type of value assignment. Possible values:
constant,field,multiValueConstant - Constant string
- Constant value
- Field
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSmartscapeNodeNodeNameField, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSmartscapeNodeNodeNameFieldArgs
- Source
Field stringName - Source field name
- Default
Value string - Default value
- Source
Field stringName - Source field name
- Default
Value string - Default value
- source_
field_ stringname - Source field name
- default_
value string - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
- source
Field stringName - Source field name
- default
Value string - Default value
- source_
field_ strname - Source field name
- default_
value str - Default value
- source
Field StringName - Source field name
- default
Value String - Default value
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSmartscapeNodeStaticEdgesToExtract, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSmartscapeNodeStaticEdgesToExtractArgs
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntry, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorSmartscapeNodeStaticEdgesToExtractSmartscapeStaticEdgeExtractionEntryArgs
- 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorTechnology, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorTechnologyArgs
- 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.
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorValueMetric, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorValueMetricArgs
- Field string
- Field with metric value
- Metric
Key string - Metric key
- Default
Value string - Default value with metric value
- Dimensions
Pulumiverse.
Dynatrace. Inputs. Openpipeline V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
V2Davis Problems 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
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorValueMetricDimensions, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorValueMetricDimensionsArgs
OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorValueMetricDimensionsDimension, OpenpipelineV2DavisProblemsPipelinesStorageProcessorsProcessorValueMetricDimensionsDimensionArgs
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- Constant
Field stringName - Destination field name
- Constant
Value string - Constant value to be assigned to field
- Default
Value string - Default value
- Destination
Field stringName - Destination field name
- Extraction
Type string - Field value extraction type. Possible values:
constant,field - Source
Field stringName - Source field name
- Strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ stringname - Destination field name
- constant_
value string - Constant value to be assigned to field
- default_
value string - Default value
- destination_
field_ stringname - Destination field name
- extraction_
type string - Field value extraction type. Possible values:
constant,field - source_
field_ stringname - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - Field value extraction type. Possible values:
constant,field - source
Field StringName - Source field name
- strategy String
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field stringName - Destination field name
- constant
Value string - Constant value to be assigned to field
- default
Value string - Default value
- destination
Field stringName - Destination field name
- extraction
Type string - Field value extraction type. Possible values:
constant,field - source
Field stringName - Source field name
- strategy string
- Strategy for field extraction. Possible values:
equals,startsWith
- constant_
field_ strname - Destination field name
- constant_
value str - Constant value to be assigned to field
- default_
value str - Default value
- destination_
field_ strname - Destination field name
- extraction_
type str - Field value extraction type. Possible values:
constant,field - source_
field_ strname - Source field name
- strategy str
- Strategy for field extraction. Possible values:
equals,startsWith
- constant
Field StringName - Destination field name
- constant
Value String - Constant value to be assigned to field
- default
Value String - Default value
- destination
Field StringName - Destination field name
- extraction
Type String - 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