1. Packages
  2. Dynatrace
  3. API Docs
  4. BusinessEventsOneagentOutgoing
Dynatrace v0.16.0 published on Tuesday, Sep 10, 2024 by Pulumiverse

dynatrace.BusinessEventsOneagentOutgoing

Explore with Pulumi AI

dynatrace logo
Dynatrace v0.16.0 published on Tuesday, Sep 10, 2024 by Pulumiverse

    Create BusinessEventsOneagentOutgoing Resource

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

    Constructor syntax

    new BusinessEventsOneagentOutgoing(name: string, args: BusinessEventsOneagentOutgoingArgs, opts?: CustomResourceOptions);
    @overload
    def BusinessEventsOneagentOutgoing(resource_name: str,
                                       args: BusinessEventsOneagentOutgoingArgs,
                                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def BusinessEventsOneagentOutgoing(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       enabled: Optional[bool] = None,
                                       event: Optional[BusinessEventsOneagentOutgoingEventArgs] = None,
                                       rule_name: Optional[str] = None,
                                       triggers: Optional[BusinessEventsOneagentOutgoingTriggersArgs] = None,
                                       insert_after: Optional[str] = None,
                                       scope: Optional[str] = None)
    func NewBusinessEventsOneagentOutgoing(ctx *Context, name string, args BusinessEventsOneagentOutgoingArgs, opts ...ResourceOption) (*BusinessEventsOneagentOutgoing, error)
    public BusinessEventsOneagentOutgoing(string name, BusinessEventsOneagentOutgoingArgs args, CustomResourceOptions? opts = null)
    public BusinessEventsOneagentOutgoing(String name, BusinessEventsOneagentOutgoingArgs args)
    public BusinessEventsOneagentOutgoing(String name, BusinessEventsOneagentOutgoingArgs args, CustomResourceOptions options)
    
    type: dynatrace:BusinessEventsOneagentOutgoing
    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 BusinessEventsOneagentOutgoingArgs
    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 BusinessEventsOneagentOutgoingArgs
    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 BusinessEventsOneagentOutgoingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BusinessEventsOneagentOutgoingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BusinessEventsOneagentOutgoingArgs
    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 businessEventsOneagentOutgoingResource = new Dynatrace.BusinessEventsOneagentOutgoing("businessEventsOneagentOutgoingResource", new()
    {
        Enabled = false,
        Event = new Dynatrace.Inputs.BusinessEventsOneagentOutgoingEventArgs
        {
            Category = new Dynatrace.Inputs.BusinessEventsOneagentOutgoingEventCategoryArgs
            {
                SourceType = "string",
                Path = "string",
                Source = "string",
            },
            Provider = new Dynatrace.Inputs.BusinessEventsOneagentOutgoingEventProviderArgs
            {
                SourceType = "string",
                Path = "string",
                Source = "string",
            },
            Type = new Dynatrace.Inputs.BusinessEventsOneagentOutgoingEventTypeArgs
            {
                SourceType = "string",
                Path = "string",
                Source = "string",
            },
            Data = new Dynatrace.Inputs.BusinessEventsOneagentOutgoingEventDataArgs
            {
                EventDataFieldComplexes = new[]
                {
                    new Dynatrace.Inputs.BusinessEventsOneagentOutgoingEventDataEventDataFieldComplexArgs
                    {
                        Name = "string",
                        Source = new Dynatrace.Inputs.BusinessEventsOneagentOutgoingEventDataEventDataFieldComplexSourceArgs
                        {
                            SourceType = "string",
                            Path = "string",
                            Source = "string",
                        },
                    },
                },
            },
        },
        RuleName = "string",
        Triggers = new Dynatrace.Inputs.BusinessEventsOneagentOutgoingTriggersArgs
        {
            Triggers = new[]
            {
                new Dynatrace.Inputs.BusinessEventsOneagentOutgoingTriggersTriggerArgs
                {
                    Source = new Dynatrace.Inputs.BusinessEventsOneagentOutgoingTriggersTriggerSourceArgs
                    {
                        DataSource = "string",
                        Path = "string",
                    },
                    Type = "string",
                    CaseSensitive = false,
                    Value = "string",
                },
            },
        },
        InsertAfter = "string",
        Scope = "string",
    });
    
    example, err := dynatrace.NewBusinessEventsOneagentOutgoing(ctx, "businessEventsOneagentOutgoingResource", &dynatrace.BusinessEventsOneagentOutgoingArgs{
    	Enabled: pulumi.Bool(false),
    	Event: &dynatrace.BusinessEventsOneagentOutgoingEventArgs{
    		Category: &dynatrace.BusinessEventsOneagentOutgoingEventCategoryArgs{
    			SourceType: pulumi.String("string"),
    			Path:       pulumi.String("string"),
    			Source:     pulumi.String("string"),
    		},
    		Provider: &dynatrace.BusinessEventsOneagentOutgoingEventProviderArgs{
    			SourceType: pulumi.String("string"),
    			Path:       pulumi.String("string"),
    			Source:     pulumi.String("string"),
    		},
    		Type: &dynatrace.BusinessEventsOneagentOutgoingEventTypeArgs{
    			SourceType: pulumi.String("string"),
    			Path:       pulumi.String("string"),
    			Source:     pulumi.String("string"),
    		},
    		Data: &dynatrace.BusinessEventsOneagentOutgoingEventDataArgs{
    			EventDataFieldComplexes: dynatrace.BusinessEventsOneagentOutgoingEventDataEventDataFieldComplexArray{
    				&dynatrace.BusinessEventsOneagentOutgoingEventDataEventDataFieldComplexArgs{
    					Name: pulumi.String("string"),
    					Source: &dynatrace.BusinessEventsOneagentOutgoingEventDataEventDataFieldComplexSourceArgs{
    						SourceType: pulumi.String("string"),
    						Path:       pulumi.String("string"),
    						Source:     pulumi.String("string"),
    					},
    				},
    			},
    		},
    	},
    	RuleName: pulumi.String("string"),
    	Triggers: &dynatrace.BusinessEventsOneagentOutgoingTriggersArgs{
    		Triggers: dynatrace.BusinessEventsOneagentOutgoingTriggersTriggerArray{
    			&dynatrace.BusinessEventsOneagentOutgoingTriggersTriggerArgs{
    				Source: &dynatrace.BusinessEventsOneagentOutgoingTriggersTriggerSourceArgs{
    					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 businessEventsOneagentOutgoingResource = new BusinessEventsOneagentOutgoing("businessEventsOneagentOutgoingResource", BusinessEventsOneagentOutgoingArgs.builder()
        .enabled(false)
        .event(BusinessEventsOneagentOutgoingEventArgs.builder()
            .category(BusinessEventsOneagentOutgoingEventCategoryArgs.builder()
                .sourceType("string")
                .path("string")
                .source("string")
                .build())
            .provider(BusinessEventsOneagentOutgoingEventProviderArgs.builder()
                .sourceType("string")
                .path("string")
                .source("string")
                .build())
            .type(BusinessEventsOneagentOutgoingEventTypeArgs.builder()
                .sourceType("string")
                .path("string")
                .source("string")
                .build())
            .data(BusinessEventsOneagentOutgoingEventDataArgs.builder()
                .eventDataFieldComplexes(BusinessEventsOneagentOutgoingEventDataEventDataFieldComplexArgs.builder()
                    .name("string")
                    .source(BusinessEventsOneagentOutgoingEventDataEventDataFieldComplexSourceArgs.builder()
                        .sourceType("string")
                        .path("string")
                        .source("string")
                        .build())
                    .build())
                .build())
            .build())
        .ruleName("string")
        .triggers(BusinessEventsOneagentOutgoingTriggersArgs.builder()
            .triggers(BusinessEventsOneagentOutgoingTriggersTriggerArgs.builder()
                .source(BusinessEventsOneagentOutgoingTriggersTriggerSourceArgs.builder()
                    .dataSource("string")
                    .path("string")
                    .build())
                .type("string")
                .caseSensitive(false)
                .value("string")
                .build())
            .build())
        .insertAfter("string")
        .scope("string")
        .build());
    
    business_events_oneagent_outgoing_resource = dynatrace.BusinessEventsOneagentOutgoing("businessEventsOneagentOutgoingResource",
        enabled=False,
        event=dynatrace.BusinessEventsOneagentOutgoingEventArgs(
            category=dynatrace.BusinessEventsOneagentOutgoingEventCategoryArgs(
                source_type="string",
                path="string",
                source="string",
            ),
            provider=dynatrace.BusinessEventsOneagentOutgoingEventProviderArgs(
                source_type="string",
                path="string",
                source="string",
            ),
            type=dynatrace.BusinessEventsOneagentOutgoingEventTypeArgs(
                source_type="string",
                path="string",
                source="string",
            ),
            data=dynatrace.BusinessEventsOneagentOutgoingEventDataArgs(
                event_data_field_complexes=[dynatrace.BusinessEventsOneagentOutgoingEventDataEventDataFieldComplexArgs(
                    name="string",
                    source=dynatrace.BusinessEventsOneagentOutgoingEventDataEventDataFieldComplexSourceArgs(
                        source_type="string",
                        path="string",
                        source="string",
                    ),
                )],
            ),
        ),
        rule_name="string",
        triggers=dynatrace.BusinessEventsOneagentOutgoingTriggersArgs(
            triggers=[dynatrace.BusinessEventsOneagentOutgoingTriggersTriggerArgs(
                source=dynatrace.BusinessEventsOneagentOutgoingTriggersTriggerSourceArgs(
                    data_source="string",
                    path="string",
                ),
                type="string",
                case_sensitive=False,
                value="string",
            )],
        ),
        insert_after="string",
        scope="string")
    
    const businessEventsOneagentOutgoingResource = new dynatrace.BusinessEventsOneagentOutgoing("businessEventsOneagentOutgoingResource", {
        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:BusinessEventsOneagentOutgoing
    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
    

    BusinessEventsOneagentOutgoing 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 BusinessEventsOneagentOutgoing resource accepts the following input properties:

    Enabled bool
    This setting is enabled (true) or disabled (false)
    Event Pulumiverse.Dynatrace.Inputs.BusinessEventsOneagentOutgoingEvent
    Event meta data
    RuleName string
    Rule name
    Triggers Pulumiverse.Dynatrace.Inputs.BusinessEventsOneagentOutgoingTriggers
    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 BusinessEventsOneagentOutgoingEventArgs
    Event meta data
    RuleName string
    Rule name
    Triggers BusinessEventsOneagentOutgoingTriggersArgs
    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 BusinessEventsOneagentOutgoingEvent
    Event meta data
    ruleName String
    Rule name
    triggers BusinessEventsOneagentOutgoingTriggers
    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 BusinessEventsOneagentOutgoingEvent
    Event meta data
    ruleName string
    Rule name
    triggers BusinessEventsOneagentOutgoingTriggers
    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 BusinessEventsOneagentOutgoingEventArgs
    Event meta data
    rule_name str
    Rule name
    triggers BusinessEventsOneagentOutgoingTriggersArgs
    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 BusinessEventsOneagentOutgoing 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 BusinessEventsOneagentOutgoing Resource

    Get an existing BusinessEventsOneagentOutgoing 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?: BusinessEventsOneagentOutgoingState, opts?: CustomResourceOptions): BusinessEventsOneagentOutgoing
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            enabled: Optional[bool] = None,
            event: Optional[BusinessEventsOneagentOutgoingEventArgs] = None,
            insert_after: Optional[str] = None,
            rule_name: Optional[str] = None,
            scope: Optional[str] = None,
            triggers: Optional[BusinessEventsOneagentOutgoingTriggersArgs] = None) -> BusinessEventsOneagentOutgoing
    func GetBusinessEventsOneagentOutgoing(ctx *Context, name string, id IDInput, state *BusinessEventsOneagentOutgoingState, opts ...ResourceOption) (*BusinessEventsOneagentOutgoing, error)
    public static BusinessEventsOneagentOutgoing Get(string name, Input<string> id, BusinessEventsOneagentOutgoingState? state, CustomResourceOptions? opts = null)
    public static BusinessEventsOneagentOutgoing get(String name, Output<String> id, BusinessEventsOneagentOutgoingState 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.BusinessEventsOneagentOutgoingEvent
    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.BusinessEventsOneagentOutgoingTriggers
    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 BusinessEventsOneagentOutgoingEventArgs
    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 BusinessEventsOneagentOutgoingTriggersArgs
    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 BusinessEventsOneagentOutgoingEvent
    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 BusinessEventsOneagentOutgoingTriggers
    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 BusinessEventsOneagentOutgoingEvent
    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 BusinessEventsOneagentOutgoingTriggers
    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 BusinessEventsOneagentOutgoingEventArgs
    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 BusinessEventsOneagentOutgoingTriggersArgs
    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

    BusinessEventsOneagentOutgoingEvent, BusinessEventsOneagentOutgoingEventArgs

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

    BusinessEventsOneagentOutgoingEventCategory, BusinessEventsOneagentOutgoingEventCategoryArgs

    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

    BusinessEventsOneagentOutgoingEventData, BusinessEventsOneagentOutgoingEventDataArgs

    BusinessEventsOneagentOutgoingEventDataEventDataFieldComplex, BusinessEventsOneagentOutgoingEventDataEventDataFieldComplexArgs

    Name string
    Field name to be added to data.
    Source BusinessEventsOneagentOutgoingEventDataEventDataFieldComplexSource
    no documentation available
    name String
    Field name to be added to data.
    source BusinessEventsOneagentOutgoingEventDataEventDataFieldComplexSource
    no documentation available
    name string
    Field name to be added to data.
    source BusinessEventsOneagentOutgoingEventDataEventDataFieldComplexSource
    no documentation available
    name str
    Field name to be added to data.
    source BusinessEventsOneagentOutgoingEventDataEventDataFieldComplexSource
    no documentation available
    name String
    Field name to be added to data.
    source Property Map
    no documentation available

    BusinessEventsOneagentOutgoingEventDataEventDataFieldComplexSource, BusinessEventsOneagentOutgoingEventDataEventDataFieldComplexSourceArgs

    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

    BusinessEventsOneagentOutgoingEventProvider, BusinessEventsOneagentOutgoingEventProviderArgs

    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

    BusinessEventsOneagentOutgoingEventType, BusinessEventsOneagentOutgoingEventTypeArgs

    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

    BusinessEventsOneagentOutgoingTriggers, BusinessEventsOneagentOutgoingTriggersArgs

    BusinessEventsOneagentOutgoingTriggersTrigger, BusinessEventsOneagentOutgoingTriggersTriggerArgs

    Source Pulumiverse.Dynatrace.Inputs.BusinessEventsOneagentOutgoingTriggersTriggerSource
    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 BusinessEventsOneagentOutgoingTriggersTriggerSource
    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 BusinessEventsOneagentOutgoingTriggersTriggerSource
    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 BusinessEventsOneagentOutgoingTriggersTriggerSource
    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 BusinessEventsOneagentOutgoingTriggersTriggerSource
    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

    BusinessEventsOneagentOutgoingTriggersTriggerSource, BusinessEventsOneagentOutgoingTriggersTriggerSourceArgs

    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.16.0 published on Tuesday, Sep 10, 2024 by Pulumiverse