Dynatrace v0.16.0 published on Tuesday, Sep 10, 2024 by Pulumiverse
dynatrace.BusinessEventsOneagent
Explore with Pulumi AI
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. Business Events Oneagent Event - Event meta data
- Rule
Name string - Rule name
- Triggers
Pulumiverse.
Dynatrace. Inputs. Business Events Oneagent Triggers - 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 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
Business
Events Oneagent Event Args - Event meta data
- Rule
Name string - Rule name
- Triggers
Business
Events Oneagent Triggers Args - 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 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
Business
Events Oneagent Event - Event meta data
- rule
Name String - Rule name
- triggers
Business
Events Oneagent Triggers - 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 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
Business
Events Oneagent Event - Event meta data
- rule
Name string - Rule name
- triggers
Business
Events Oneagent Triggers - 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 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
Business
Events Oneagent Event Args - Event meta data
- rule_
name str - Rule name
- triggers
Business
Events Oneagent Triggers Args - 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
- rule
Name 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.
- insert
After 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.
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Event
Pulumiverse.
Dynatrace. Inputs. Business Events Oneagent Event - Event meta data
- Insert
After 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
- Rule
Name 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. Business Events Oneagent Triggers - 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
Business
Events Oneagent Event Args - Event meta data
- Insert
After 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
- Rule
Name 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
Business
Events Oneagent Triggers Args - 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
Business
Events Oneagent Event - Event meta data
- insert
After 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
- rule
Name 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
Business
Events Oneagent Triggers - 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
Business
Events Oneagent Event - Event meta data
- insert
After 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
- rule
Name 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
Business
Events Oneagent Triggers - 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
Business
Events Oneagent Event Args - 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
Business
Events Oneagent Triggers Args - 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
- insert
After 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
- rule
Name 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
Pulumiverse.
Dynatrace. Inputs. Business Events Oneagent Event Category - Event category
- Provider
Pulumiverse.
Dynatrace. Inputs. Business Events Oneagent Event Provider - Event provider
- Type
Pulumiverse.
Dynatrace. Inputs. Business Events Oneagent Event Type - Event type
- Data
Pulumiverse.
Dynatrace. Inputs. Business Events Oneagent Event Data - Additional attributes for the business event.
- Category
Business
Events Oneagent Event Category - Event category
- Provider
Business
Events Oneagent Event Provider - Event provider
- Type
Business
Events Oneagent Event Type - Event type
- Data
Business
Events Oneagent Event Data - Additional attributes for the business event.
- category
Business
Events Oneagent Event Category - Event category
- provider
Business
Events Oneagent Event Provider - Event provider
- type
Business
Events Oneagent Event Type - Event type
- data
Business
Events Oneagent Event Data - Additional attributes for the business event.
- category
Business
Events Oneagent Event Category - Event category
- provider
Business
Events Oneagent Event Provider - Event provider
- type
Business
Events Oneagent Event Type - Event type
- data
Business
Events Oneagent Event Data - Additional attributes for the business event.
- category
Business
Events Oneagent Event Category - Event category
- provider
Business
Events Oneagent Event Provider - Event provider
- type
Business
Events Oneagent Event Type - Event type
- data
Business
Events Oneagent Event Data - Additional attributes for the business event.
- 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
- Source
Type 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 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 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 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
- source
Type 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. Business Events Oneagent Event Data Event Data Field Complex Source - no documentation available
- Name string
- Field name to be added to data.
- Source
Business
Events Oneagent Event Data Event Data Field Complex Source - no documentation available
- name String
- Field name to be added to data.
- source
Business
Events Oneagent Event Data Event Data Field Complex Source - no documentation available
- name string
- Field name to be added to data.
- source
Business
Events Oneagent Event Data Event Data Field Complex Source - no documentation available
- name str
- Field name to be added to data.
- source
Business
Events Oneagent Event Data Event Data Field Complex Source - no documentation available
- name String
- Field name to be added to data.
- source Property Map
- no documentation available
BusinessEventsOneagentEventDataEventDataFieldComplexSource, BusinessEventsOneagentEventDataEventDataFieldComplexSourceArgs
- Source
Type 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 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 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 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
- source
Type 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
- Source
Type 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 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 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 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
- source
Type 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
- Source
Type 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 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 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 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
- source
Type 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. Business Events Oneagent Triggers Trigger Source - 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
- Case
Sensitive bool - Case sensitive
- Value string
- no documentation available
- Source
Business
Events Oneagent Triggers Trigger Source - 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
- Case
Sensitive bool - Case sensitive
- Value string
- no documentation available
- source
Business
Events Oneagent Triggers Trigger Source - 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
- case
Sensitive Boolean - Case sensitive
- value String
- no documentation available
- source
Business
Events Oneagent Triggers Trigger Source - 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
- case
Sensitive boolean - Case sensitive
- value string
- no documentation available
- source
Business
Events Oneagent Triggers Trigger Source - 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
- case
Sensitive Boolean - Case sensitive
- value String
- no documentation available
BusinessEventsOneagentTriggersTriggerSource, BusinessEventsOneagentTriggersTriggerSourceArgs
- Data
Source 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 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 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 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
- data
Source 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.