1. Packages
  2. Dynatrace
  3. API Docs
  4. BusinessEventsOneagent
Dynatrace v0.12.0 published on Tuesday, Jul 16, 2024 by Pulumiverse

dynatrace.BusinessEventsOneagent

Explore with Pulumi AI

dynatrace logo
Dynatrace v0.12.0 published on Tuesday, Jul 16, 2024 by Pulumiverse

    Create BusinessEventsOneagent Resource

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

    Constructor syntax

    new BusinessEventsOneagent(name: string, args: BusinessEventsOneagentArgs, opts?: CustomResourceOptions);
    @overload
    def BusinessEventsOneagent(resource_name: str,
                               args: BusinessEventsOneagentArgs,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def BusinessEventsOneagent(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               enabled: Optional[bool] = None,
                               event: Optional[BusinessEventsOneagentEventArgs] = None,
                               rule_name: Optional[str] = None,
                               triggers: Optional[BusinessEventsOneagentTriggersArgs] = None,
                               insert_after: Optional[str] = None,
                               scope: Optional[str] = None)
    func NewBusinessEventsOneagent(ctx *Context, name string, args BusinessEventsOneagentArgs, opts ...ResourceOption) (*BusinessEventsOneagent, error)
    public BusinessEventsOneagent(string name, BusinessEventsOneagentArgs args, CustomResourceOptions? opts = null)
    public BusinessEventsOneagent(String name, BusinessEventsOneagentArgs args)
    public BusinessEventsOneagent(String name, BusinessEventsOneagentArgs args, CustomResourceOptions options)
    
    type: dynatrace:BusinessEventsOneagent
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

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

    Constructor example

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

    var businessEventsOneagentResource = new Dynatrace.BusinessEventsOneagent("businessEventsOneagentResource", new()
    {
        Enabled = false,
        Event = new Dynatrace.Inputs.BusinessEventsOneagentEventArgs
        {
            Category = new Dynatrace.Inputs.BusinessEventsOneagentEventCategoryArgs
            {
                SourceType = "string",
                Path = "string",
                Source = "string",
            },
            Provider = new Dynatrace.Inputs.BusinessEventsOneagentEventProviderArgs
            {
                SourceType = "string",
                Path = "string",
                Source = "string",
            },
            Type = new Dynatrace.Inputs.BusinessEventsOneagentEventTypeArgs
            {
                SourceType = "string",
                Path = "string",
                Source = "string",
            },
            Data = new Dynatrace.Inputs.BusinessEventsOneagentEventDataArgs
            {
                EventDataFieldComplexes = new[]
                {
                    new Dynatrace.Inputs.BusinessEventsOneagentEventDataEventDataFieldComplexArgs
                    {
                        Name = "string",
                        Source = new Dynatrace.Inputs.BusinessEventsOneagentEventDataEventDataFieldComplexSourceArgs
                        {
                            SourceType = "string",
                            Path = "string",
                            Source = "string",
                        },
                    },
                },
            },
        },
        RuleName = "string",
        Triggers = new Dynatrace.Inputs.BusinessEventsOneagentTriggersArgs
        {
            Triggers = new[]
            {
                new Dynatrace.Inputs.BusinessEventsOneagentTriggersTriggerArgs
                {
                    Source = new Dynatrace.Inputs.BusinessEventsOneagentTriggersTriggerSourceArgs
                    {
                        DataSource = "string",
                        Path = "string",
                    },
                    Type = "string",
                    CaseSensitive = false,
                    Value = "string",
                },
            },
        },
        InsertAfter = "string",
        Scope = "string",
    });
    
    example, err := dynatrace.NewBusinessEventsOneagent(ctx, "businessEventsOneagentResource", &dynatrace.BusinessEventsOneagentArgs{
    	Enabled: pulumi.Bool(false),
    	Event: &dynatrace.BusinessEventsOneagentEventArgs{
    		Category: &dynatrace.BusinessEventsOneagentEventCategoryArgs{
    			SourceType: pulumi.String("string"),
    			Path:       pulumi.String("string"),
    			Source:     pulumi.String("string"),
    		},
    		Provider: &dynatrace.BusinessEventsOneagentEventProviderArgs{
    			SourceType: pulumi.String("string"),
    			Path:       pulumi.String("string"),
    			Source:     pulumi.String("string"),
    		},
    		Type: &dynatrace.BusinessEventsOneagentEventTypeArgs{
    			SourceType: pulumi.String("string"),
    			Path:       pulumi.String("string"),
    			Source:     pulumi.String("string"),
    		},
    		Data: &dynatrace.BusinessEventsOneagentEventDataArgs{
    			EventDataFieldComplexes: dynatrace.BusinessEventsOneagentEventDataEventDataFieldComplexArray{
    				&dynatrace.BusinessEventsOneagentEventDataEventDataFieldComplexArgs{
    					Name: pulumi.String("string"),
    					Source: &dynatrace.BusinessEventsOneagentEventDataEventDataFieldComplexSourceArgs{
    						SourceType: pulumi.String("string"),
    						Path:       pulumi.String("string"),
    						Source:     pulumi.String("string"),
    					},
    				},
    			},
    		},
    	},
    	RuleName: pulumi.String("string"),
    	Triggers: &dynatrace.BusinessEventsOneagentTriggersArgs{
    		Triggers: dynatrace.BusinessEventsOneagentTriggersTriggerArray{
    			&dynatrace.BusinessEventsOneagentTriggersTriggerArgs{
    				Source: &dynatrace.BusinessEventsOneagentTriggersTriggerSourceArgs{
    					DataSource: pulumi.String("string"),
    					Path:       pulumi.String("string"),
    				},
    				Type:          pulumi.String("string"),
    				CaseSensitive: pulumi.Bool(false),
    				Value:         pulumi.String("string"),
    			},
    		},
    	},
    	InsertAfter: pulumi.String("string"),
    	Scope:       pulumi.String("string"),
    })
    
    var businessEventsOneagentResource = new BusinessEventsOneagent("businessEventsOneagentResource", BusinessEventsOneagentArgs.builder()
        .enabled(false)
        .event(BusinessEventsOneagentEventArgs.builder()
            .category(BusinessEventsOneagentEventCategoryArgs.builder()
                .sourceType("string")
                .path("string")
                .source("string")
                .build())
            .provider(BusinessEventsOneagentEventProviderArgs.builder()
                .sourceType("string")
                .path("string")
                .source("string")
                .build())
            .type(BusinessEventsOneagentEventTypeArgs.builder()
                .sourceType("string")
                .path("string")
                .source("string")
                .build())
            .data(BusinessEventsOneagentEventDataArgs.builder()
                .eventDataFieldComplexes(BusinessEventsOneagentEventDataEventDataFieldComplexArgs.builder()
                    .name("string")
                    .source(BusinessEventsOneagentEventDataEventDataFieldComplexSourceArgs.builder()
                        .sourceType("string")
                        .path("string")
                        .source("string")
                        .build())
                    .build())
                .build())
            .build())
        .ruleName("string")
        .triggers(BusinessEventsOneagentTriggersArgs.builder()
            .triggers(BusinessEventsOneagentTriggersTriggerArgs.builder()
                .source(BusinessEventsOneagentTriggersTriggerSourceArgs.builder()
                    .dataSource("string")
                    .path("string")
                    .build())
                .type("string")
                .caseSensitive(false)
                .value("string")
                .build())
            .build())
        .insertAfter("string")
        .scope("string")
        .build());
    
    business_events_oneagent_resource = dynatrace.BusinessEventsOneagent("businessEventsOneagentResource",
        enabled=False,
        event=dynatrace.BusinessEventsOneagentEventArgs(
            category=dynatrace.BusinessEventsOneagentEventCategoryArgs(
                source_type="string",
                path="string",
                source="string",
            ),
            provider=dynatrace.BusinessEventsOneagentEventProviderArgs(
                source_type="string",
                path="string",
                source="string",
            ),
            type=dynatrace.BusinessEventsOneagentEventTypeArgs(
                source_type="string",
                path="string",
                source="string",
            ),
            data=dynatrace.BusinessEventsOneagentEventDataArgs(
                event_data_field_complexes=[dynatrace.BusinessEventsOneagentEventDataEventDataFieldComplexArgs(
                    name="string",
                    source=dynatrace.BusinessEventsOneagentEventDataEventDataFieldComplexSourceArgs(
                        source_type="string",
                        path="string",
                        source="string",
                    ),
                )],
            ),
        ),
        rule_name="string",
        triggers=dynatrace.BusinessEventsOneagentTriggersArgs(
            triggers=[dynatrace.BusinessEventsOneagentTriggersTriggerArgs(
                source=dynatrace.BusinessEventsOneagentTriggersTriggerSourceArgs(
                    data_source="string",
                    path="string",
                ),
                type="string",
                case_sensitive=False,
                value="string",
            )],
        ),
        insert_after="string",
        scope="string")
    
    const businessEventsOneagentResource = new dynatrace.BusinessEventsOneagent("businessEventsOneagentResource", {
        enabled: false,
        event: {
            category: {
                sourceType: "string",
                path: "string",
                source: "string",
            },
            provider: {
                sourceType: "string",
                path: "string",
                source: "string",
            },
            type: {
                sourceType: "string",
                path: "string",
                source: "string",
            },
            data: {
                eventDataFieldComplexes: [{
                    name: "string",
                    source: {
                        sourceType: "string",
                        path: "string",
                        source: "string",
                    },
                }],
            },
        },
        ruleName: "string",
        triggers: {
            triggers: [{
                source: {
                    dataSource: "string",
                    path: "string",
                },
                type: "string",
                caseSensitive: false,
                value: "string",
            }],
        },
        insertAfter: "string",
        scope: "string",
    });
    
    type: dynatrace:BusinessEventsOneagent
    properties:
        enabled: false
        event:
            category:
                path: string
                source: string
                sourceType: string
            data:
                eventDataFieldComplexes:
                    - name: string
                      source:
                        path: string
                        source: string
                        sourceType: string
            provider:
                path: string
                source: string
                sourceType: string
            type:
                path: string
                source: string
                sourceType: string
        insertAfter: string
        ruleName: string
        scope: string
        triggers:
            triggers:
                - caseSensitive: false
                  source:
                    dataSource: string
                    path: string
                  type: string
                  value: string
    

    BusinessEventsOneagent Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The BusinessEventsOneagent resource accepts the following input properties:

    Enabled bool
    This setting is enabled (true) or disabled (false)
    Event Pulumiverse.Dynatrace.Inputs.BusinessEventsOneagentEvent
    Event meta data
    RuleName string
    Rule name
    Triggers Pulumiverse.Dynatrace.Inputs.BusinessEventsOneagentTriggers
    Define conditions to trigger business events from incoming web requests. Triggers are connected by AND logic per capture rule. If you set multiple trigger rules, all of them need to be fulfilled to capture a business event.
    InsertAfter string
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    Scope string
    The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
    Enabled bool
    This setting is enabled (true) or disabled (false)
    Event BusinessEventsOneagentEventArgs
    Event meta data
    RuleName string
    Rule name
    Triggers BusinessEventsOneagentTriggersArgs
    Define conditions to trigger business events from incoming web requests. Triggers are connected by AND logic per capture rule. If you set multiple trigger rules, all of them need to be fulfilled to capture a business event.
    InsertAfter string
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    Scope string
    The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    event BusinessEventsOneagentEvent
    Event meta data
    ruleName String
    Rule name
    triggers BusinessEventsOneagentTriggers
    Define conditions to trigger business events from incoming web requests. Triggers are connected by AND logic per capture rule. If you set multiple trigger rules, all of them need to be fulfilled to capture a business event.
    insertAfter String
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    scope String
    The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
    enabled boolean
    This setting is enabled (true) or disabled (false)
    event BusinessEventsOneagentEvent
    Event meta data
    ruleName string
    Rule name
    triggers BusinessEventsOneagentTriggers
    Define conditions to trigger business events from incoming web requests. Triggers are connected by AND logic per capture rule. If you set multiple trigger rules, all of them need to be fulfilled to capture a business event.
    insertAfter string
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    scope string
    The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
    enabled bool
    This setting is enabled (true) or disabled (false)
    event BusinessEventsOneagentEventArgs
    Event meta data
    rule_name str
    Rule name
    triggers BusinessEventsOneagentTriggersArgs
    Define conditions to trigger business events from incoming web requests. Triggers are connected by AND logic per capture rule. If you set multiple trigger rules, all of them need to be fulfilled to capture a business event.
    insert_after str
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    scope str
    The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    event Property Map
    Event meta data
    ruleName String
    Rule name
    triggers Property Map
    Define conditions to trigger business events from incoming web requests. Triggers are connected by AND logic per capture rule. If you set multiple trigger rules, all of them need to be fulfilled to capture a business event.
    insertAfter String
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    scope String
    The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the BusinessEventsOneagent 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 str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing BusinessEventsOneagent Resource

    Get an existing BusinessEventsOneagent 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?: BusinessEventsOneagentState, opts?: CustomResourceOptions): BusinessEventsOneagent
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            enabled: Optional[bool] = None,
            event: Optional[BusinessEventsOneagentEventArgs] = None,
            insert_after: Optional[str] = None,
            rule_name: Optional[str] = None,
            scope: Optional[str] = None,
            triggers: Optional[BusinessEventsOneagentTriggersArgs] = None) -> BusinessEventsOneagent
    func GetBusinessEventsOneagent(ctx *Context, name string, id IDInput, state *BusinessEventsOneagentState, opts ...ResourceOption) (*BusinessEventsOneagent, error)
    public static BusinessEventsOneagent Get(string name, Input<string> id, BusinessEventsOneagentState? state, CustomResourceOptions? opts = null)
    public static BusinessEventsOneagent get(String name, Output<String> id, BusinessEventsOneagentState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Enabled bool
    This setting is enabled (true) or disabled (false)
    Event Pulumiverse.Dynatrace.Inputs.BusinessEventsOneagentEvent
    Event meta data
    InsertAfter string
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    RuleName string
    Rule name
    Scope string
    The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
    Triggers Pulumiverse.Dynatrace.Inputs.BusinessEventsOneagentTriggers
    Define conditions to trigger business events from incoming web requests. Triggers are connected by AND logic per capture rule. If you set multiple trigger rules, all of them need to be fulfilled to capture a business event.
    Enabled bool
    This setting is enabled (true) or disabled (false)
    Event BusinessEventsOneagentEventArgs
    Event meta data
    InsertAfter string
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    RuleName string
    Rule name
    Scope string
    The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
    Triggers BusinessEventsOneagentTriggersArgs
    Define conditions to trigger business events from incoming web requests. Triggers are connected by AND logic per capture rule. If you set multiple trigger rules, all of them need to be fulfilled to capture a business event.
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    event BusinessEventsOneagentEvent
    Event meta data
    insertAfter String
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    ruleName String
    Rule name
    scope String
    The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
    triggers BusinessEventsOneagentTriggers
    Define conditions to trigger business events from incoming web requests. Triggers are connected by AND logic per capture rule. If you set multiple trigger rules, all of them need to be fulfilled to capture a business event.
    enabled boolean
    This setting is enabled (true) or disabled (false)
    event BusinessEventsOneagentEvent
    Event meta data
    insertAfter string
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    ruleName string
    Rule name
    scope string
    The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
    triggers BusinessEventsOneagentTriggers
    Define conditions to trigger business events from incoming web requests. Triggers are connected by AND logic per capture rule. If you set multiple trigger rules, all of them need to be fulfilled to capture a business event.
    enabled bool
    This setting is enabled (true) or disabled (false)
    event BusinessEventsOneagentEventArgs
    Event meta data
    insert_after str
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    rule_name str
    Rule name
    scope str
    The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
    triggers BusinessEventsOneagentTriggersArgs
    Define conditions to trigger business events from incoming web requests. Triggers are connected by AND logic per capture rule. If you set multiple trigger rules, all of them need to be fulfilled to capture a business event.
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    event Property Map
    Event meta data
    insertAfter String
    Because this resource allows for ordering you may specify the ID of the resource instance that comes before this instance regarding order. If not specified when creating the setting will be added to the end of the list. If not specified during update the order will remain untouched
    ruleName String
    Rule name
    scope String
    The scope of this setting (HOST, HOST_GROUP). Omit this property if you want to cover the whole environment.
    triggers Property Map
    Define conditions to trigger business events from incoming web requests. Triggers are connected by AND logic per capture rule. If you set multiple trigger rules, all of them need to be fulfilled to capture a business event.

    Supporting Types

    BusinessEventsOneagentEvent, BusinessEventsOneagentEventArgs

    category Property Map
    Event category
    provider Property Map
    Event provider
    type Property Map
    Event type
    data Property Map
    Additional attributes for the business event.

    BusinessEventsOneagentEventCategory, BusinessEventsOneagentEventCategoryArgs

    SourceType string
    Possible Values: Constant_string, Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    Path string
    See our documentation
    Source string
    Fixed value
    SourceType string
    Possible Values: Constant_string, Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    Path string
    See our documentation
    Source string
    Fixed value
    sourceType String
    Possible Values: Constant_string, Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    path String
    See our documentation
    source String
    Fixed value
    sourceType string
    Possible Values: Constant_string, Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    path string
    See our documentation
    source string
    Fixed value
    source_type str
    Possible Values: Constant_string, Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    path str
    See our documentation
    source str
    Fixed value
    sourceType String
    Possible Values: Constant_string, Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    path String
    See our documentation
    source String
    Fixed value

    BusinessEventsOneagentEventData, BusinessEventsOneagentEventDataArgs

    BusinessEventsOneagentEventDataEventDataFieldComplex, BusinessEventsOneagentEventDataEventDataFieldComplexArgs

    Name string
    Field name to be added to data.
    Source Pulumiverse.Dynatrace.Inputs.BusinessEventsOneagentEventDataEventDataFieldComplexSource
    no documentation available
    Name string
    Field name to be added to data.
    Source BusinessEventsOneagentEventDataEventDataFieldComplexSource
    no documentation available
    name String
    Field name to be added to data.
    source BusinessEventsOneagentEventDataEventDataFieldComplexSource
    no documentation available
    name string
    Field name to be added to data.
    source BusinessEventsOneagentEventDataEventDataFieldComplexSource
    no documentation available
    name str
    Field name to be added to data.
    source BusinessEventsOneagentEventDataEventDataFieldComplexSource
    no documentation available
    name String
    Field name to be added to data.
    source Property Map
    no documentation available

    BusinessEventsOneagentEventDataEventDataFieldComplexSource, BusinessEventsOneagentEventDataEventDataFieldComplexSourceArgs

    SourceType string
    Possible Values: Constant_string, Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    Path string
    See our documentation
    Source string
    Fixed value
    SourceType string
    Possible Values: Constant_string, Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    Path string
    See our documentation
    Source string
    Fixed value
    sourceType String
    Possible Values: Constant_string, Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    path String
    See our documentation
    source String
    Fixed value
    sourceType string
    Possible Values: Constant_string, Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    path string
    See our documentation
    source string
    Fixed value
    source_type str
    Possible Values: Constant_string, Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    path str
    See our documentation
    source str
    Fixed value
    sourceType String
    Possible Values: Constant_string, Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    path String
    See our documentation
    source String
    Fixed value

    BusinessEventsOneagentEventProvider, BusinessEventsOneagentEventProviderArgs

    SourceType string
    Possible Values: Constant_string, Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    Path string
    See our documentation
    Source string
    Fixed value
    SourceType string
    Possible Values: Constant_string, Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    Path string
    See our documentation
    Source string
    Fixed value
    sourceType String
    Possible Values: Constant_string, Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    path String
    See our documentation
    source String
    Fixed value
    sourceType string
    Possible Values: Constant_string, Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    path string
    See our documentation
    source string
    Fixed value
    source_type str
    Possible Values: Constant_string, Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    path str
    See our documentation
    source str
    Fixed value
    sourceType String
    Possible Values: Constant_string, Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    path String
    See our documentation
    source String
    Fixed value

    BusinessEventsOneagentEventType, BusinessEventsOneagentEventTypeArgs

    SourceType string
    Possible Values: Constant_string, Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    Path string
    See our documentation
    Source string
    Fixed value
    SourceType string
    Possible Values: Constant_string, Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    Path string
    See our documentation
    Source string
    Fixed value
    sourceType String
    Possible Values: Constant_string, Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    path String
    See our documentation
    source String
    Fixed value
    sourceType string
    Possible Values: Constant_string, Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    path string
    See our documentation
    source string
    Fixed value
    source_type str
    Possible Values: Constant_string, Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    path str
    See our documentation
    source str
    Fixed value
    sourceType String
    Possible Values: Constant_string, Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    path String
    See our documentation
    source String
    Fixed value

    BusinessEventsOneagentTriggers, BusinessEventsOneagentTriggersArgs

    BusinessEventsOneagentTriggersTrigger, BusinessEventsOneagentTriggersTriggerArgs

    Source Pulumiverse.Dynatrace.Inputs.BusinessEventsOneagentTriggersTriggerSource
    no documentation available
    Type string
    Possible Values: CONTAINS, ENDS_WITH, EQUALS, EXISTS, N_CONTAINS, N_ENDS_WITH, N_EQUALS, N_EXISTS, N_STARTS_WITH, STARTS_WITH
    CaseSensitive bool
    Case sensitive
    Value string
    no documentation available
    Source BusinessEventsOneagentTriggersTriggerSource
    no documentation available
    Type string
    Possible Values: CONTAINS, ENDS_WITH, EQUALS, EXISTS, N_CONTAINS, N_ENDS_WITH, N_EQUALS, N_EXISTS, N_STARTS_WITH, STARTS_WITH
    CaseSensitive bool
    Case sensitive
    Value string
    no documentation available
    source BusinessEventsOneagentTriggersTriggerSource
    no documentation available
    type String
    Possible Values: CONTAINS, ENDS_WITH, EQUALS, EXISTS, N_CONTAINS, N_ENDS_WITH, N_EQUALS, N_EXISTS, N_STARTS_WITH, STARTS_WITH
    caseSensitive Boolean
    Case sensitive
    value String
    no documentation available
    source BusinessEventsOneagentTriggersTriggerSource
    no documentation available
    type string
    Possible Values: CONTAINS, ENDS_WITH, EQUALS, EXISTS, N_CONTAINS, N_ENDS_WITH, N_EQUALS, N_EXISTS, N_STARTS_WITH, STARTS_WITH
    caseSensitive boolean
    Case sensitive
    value string
    no documentation available
    source BusinessEventsOneagentTriggersTriggerSource
    no documentation available
    type str
    Possible Values: CONTAINS, ENDS_WITH, EQUALS, EXISTS, N_CONTAINS, N_ENDS_WITH, N_EQUALS, N_EXISTS, N_STARTS_WITH, STARTS_WITH
    case_sensitive bool
    Case sensitive
    value str
    no documentation available
    source Property Map
    no documentation available
    type String
    Possible Values: CONTAINS, ENDS_WITH, EQUALS, EXISTS, N_CONTAINS, N_ENDS_WITH, N_EQUALS, N_EXISTS, N_STARTS_WITH, STARTS_WITH
    caseSensitive Boolean
    Case sensitive
    value String
    no documentation available

    BusinessEventsOneagentTriggersTriggerSource, BusinessEventsOneagentTriggersTriggerSourceArgs

    DataSource string
    Possible Values: Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    Path string
    See our documentation
    DataSource string
    Possible Values: Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    Path string
    See our documentation
    dataSource String
    Possible Values: Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    path String
    See our documentation
    dataSource string
    Possible Values: Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    path string
    See our documentation
    data_source str
    Possible Values: Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    path str
    See our documentation
    dataSource String
    Possible Values: Request_body, Request_headers, Request_method, Request_parameters, Request_path, Request_url, Response_body, Response_headers, Response_statusCode
    path String
    See our documentation

    Package Details

    Repository
    dynatrace pulumiverse/pulumi-dynatrace
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the dynatrace Terraform Provider.
    dynatrace logo
    Dynatrace v0.12.0 published on Tuesday, Jul 16, 2024 by Pulumiverse