1. Packages
  2. Dynatrace
  3. API Docs
  4. XmattersNotification
Dynatrace v0.27.0 published on Friday, Mar 21, 2025 by Pulumiverse

dynatrace.XmattersNotification

Explore with Pulumi AI

Create XmattersNotification Resource

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

Constructor syntax

new XmattersNotification(name: string, args: XmattersNotificationArgs, opts?: CustomResourceOptions);
@overload
def XmattersNotification(resource_name: str,
                         args: XmattersNotificationArgs,
                         opts: Optional[ResourceOptions] = None)

@overload
def XmattersNotification(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         active: Optional[bool] = None,
                         payload: Optional[str] = None,
                         profile: Optional[str] = None,
                         url: Optional[str] = None,
                         headers: Optional[XmattersNotificationHeadersArgs] = None,
                         insecure: Optional[bool] = None,
                         legacy_id: Optional[str] = None,
                         name: Optional[str] = None)
func NewXmattersNotification(ctx *Context, name string, args XmattersNotificationArgs, opts ...ResourceOption) (*XmattersNotification, error)
public XmattersNotification(string name, XmattersNotificationArgs args, CustomResourceOptions? opts = null)
public XmattersNotification(String name, XmattersNotificationArgs args)
public XmattersNotification(String name, XmattersNotificationArgs args, CustomResourceOptions options)
type: dynatrace:XmattersNotification
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. XmattersNotificationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. XmattersNotificationArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. XmattersNotificationArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. XmattersNotificationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. XmattersNotificationArgs
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 xmattersNotificationResource = new Dynatrace.XmattersNotification("xmattersNotificationResource", new()
{
    Active = false,
    Payload = "string",
    Profile = "string",
    Url = "string",
    Headers = new Dynatrace.Inputs.XmattersNotificationHeadersArgs
    {
        Headers = new[]
        {
            new Dynatrace.Inputs.XmattersNotificationHeadersHeaderArgs
            {
                Name = "string",
                SecretValue = "string",
                Value = "string",
            },
        },
    },
    Insecure = false,
    LegacyId = "string",
    Name = "string",
});
Copy
example, err := dynatrace.NewXmattersNotification(ctx, "xmattersNotificationResource", &dynatrace.XmattersNotificationArgs{
	Active:  pulumi.Bool(false),
	Payload: pulumi.String("string"),
	Profile: pulumi.String("string"),
	Url:     pulumi.String("string"),
	Headers: &dynatrace.XmattersNotificationHeadersArgs{
		Headers: dynatrace.XmattersNotificationHeadersHeaderArray{
			&dynatrace.XmattersNotificationHeadersHeaderArgs{
				Name:        pulumi.String("string"),
				SecretValue: pulumi.String("string"),
				Value:       pulumi.String("string"),
			},
		},
	},
	Insecure: pulumi.Bool(false),
	LegacyId: pulumi.String("string"),
	Name:     pulumi.String("string"),
})
Copy
var xmattersNotificationResource = new XmattersNotification("xmattersNotificationResource", XmattersNotificationArgs.builder()
    .active(false)
    .payload("string")
    .profile("string")
    .url("string")
    .headers(XmattersNotificationHeadersArgs.builder()
        .headers(XmattersNotificationHeadersHeaderArgs.builder()
            .name("string")
            .secretValue("string")
            .value("string")
            .build())
        .build())
    .insecure(false)
    .legacyId("string")
    .name("string")
    .build());
Copy
xmatters_notification_resource = dynatrace.XmattersNotification("xmattersNotificationResource",
    active=False,
    payload="string",
    profile="string",
    url="string",
    headers={
        "headers": [{
            "name": "string",
            "secret_value": "string",
            "value": "string",
        }],
    },
    insecure=False,
    legacy_id="string",
    name="string")
Copy
const xmattersNotificationResource = new dynatrace.XmattersNotification("xmattersNotificationResource", {
    active: false,
    payload: "string",
    profile: "string",
    url: "string",
    headers: {
        headers: [{
            name: "string",
            secretValue: "string",
            value: "string",
        }],
    },
    insecure: false,
    legacyId: "string",
    name: "string",
});
Copy
type: dynatrace:XmattersNotification
properties:
    active: false
    headers:
        headers:
            - name: string
              secretValue: string
              value: string
    insecure: false
    legacyId: string
    name: string
    payload: string
    profile: string
    url: string
Copy

XmattersNotification Resource Properties

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

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The XmattersNotification resource accepts the following input properties:

Active This property is required. bool
The configuration is enabled (true) or disabled (false)
Payload This property is required. string
The content of the notification message. You can use the following placeholders: * {ImpactedEntities}: Details about the entities impacted by the problem in form of a JSON array. * {ImpactedEntity}: The entity impacted by the problem or X impacted entities. * {PID}: The ID of the reported problem. * {ProblemDetailsHTML}: All problem event details, including root cause, as an HTML-formatted string. * {ProblemDetailsJSON}: All problem event details, including root cause, as a JSON object. * {ProblemDetailsMarkdown}: All problem event details, including root cause, as a Markdown-formatted string. * {ProblemDetailsText}: All problem event details, including root cause, as a text-formatted string. * {ProblemID}: The display number of the reported problem. * {ProblemImpact}: The impact level of the problem. Possible values are APPLICATION, SERVICE, and INFRASTRUCTURE. * {ProblemSeverity}: The severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, and CUSTOM_ALERT. * {ProblemTitle}: A short description of the problem. * {ProblemURL}: The URL of the problem within Dynatrace. * {State}: The state of the problem. Possible values are OPEN and RESOLVED. * {Tags}: The list of tags that are defined for all impacted entities, separated by commas
Profile This property is required. string
The ID of the associated alerting profile
Url This property is required. string
The URL of the WebHook endpoint
Headers Pulumiverse.Dynatrace.Inputs.XmattersNotificationHeaders
A list of the additional HTTP headers
Insecure bool
Accept any, including self-signed and invalid, SSL certificate (true) or only trusted (false) certificates
LegacyId string
The ID of these settings when referred to from resources requiring the REST API V1 keys
Name string
The name of the notification configuration
Active This property is required. bool
The configuration is enabled (true) or disabled (false)
Payload This property is required. string
The content of the notification message. You can use the following placeholders: * {ImpactedEntities}: Details about the entities impacted by the problem in form of a JSON array. * {ImpactedEntity}: The entity impacted by the problem or X impacted entities. * {PID}: The ID of the reported problem. * {ProblemDetailsHTML}: All problem event details, including root cause, as an HTML-formatted string. * {ProblemDetailsJSON}: All problem event details, including root cause, as a JSON object. * {ProblemDetailsMarkdown}: All problem event details, including root cause, as a Markdown-formatted string. * {ProblemDetailsText}: All problem event details, including root cause, as a text-formatted string. * {ProblemID}: The display number of the reported problem. * {ProblemImpact}: The impact level of the problem. Possible values are APPLICATION, SERVICE, and INFRASTRUCTURE. * {ProblemSeverity}: The severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, and CUSTOM_ALERT. * {ProblemTitle}: A short description of the problem. * {ProblemURL}: The URL of the problem within Dynatrace. * {State}: The state of the problem. Possible values are OPEN and RESOLVED. * {Tags}: The list of tags that are defined for all impacted entities, separated by commas
Profile This property is required. string
The ID of the associated alerting profile
Url This property is required. string
The URL of the WebHook endpoint
Headers XmattersNotificationHeadersArgs
A list of the additional HTTP headers
Insecure bool
Accept any, including self-signed and invalid, SSL certificate (true) or only trusted (false) certificates
LegacyId string
The ID of these settings when referred to from resources requiring the REST API V1 keys
Name string
The name of the notification configuration
active This property is required. Boolean
The configuration is enabled (true) or disabled (false)
payload This property is required. String
The content of the notification message. You can use the following placeholders: * {ImpactedEntities}: Details about the entities impacted by the problem in form of a JSON array. * {ImpactedEntity}: The entity impacted by the problem or X impacted entities. * {PID}: The ID of the reported problem. * {ProblemDetailsHTML}: All problem event details, including root cause, as an HTML-formatted string. * {ProblemDetailsJSON}: All problem event details, including root cause, as a JSON object. * {ProblemDetailsMarkdown}: All problem event details, including root cause, as a Markdown-formatted string. * {ProblemDetailsText}: All problem event details, including root cause, as a text-formatted string. * {ProblemID}: The display number of the reported problem. * {ProblemImpact}: The impact level of the problem. Possible values are APPLICATION, SERVICE, and INFRASTRUCTURE. * {ProblemSeverity}: The severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, and CUSTOM_ALERT. * {ProblemTitle}: A short description of the problem. * {ProblemURL}: The URL of the problem within Dynatrace. * {State}: The state of the problem. Possible values are OPEN and RESOLVED. * {Tags}: The list of tags that are defined for all impacted entities, separated by commas
profile This property is required. String
The ID of the associated alerting profile
url This property is required. String
The URL of the WebHook endpoint
headers XmattersNotificationHeaders
A list of the additional HTTP headers
insecure Boolean
Accept any, including self-signed and invalid, SSL certificate (true) or only trusted (false) certificates
legacyId String
The ID of these settings when referred to from resources requiring the REST API V1 keys
name String
The name of the notification configuration
active This property is required. boolean
The configuration is enabled (true) or disabled (false)
payload This property is required. string
The content of the notification message. You can use the following placeholders: * {ImpactedEntities}: Details about the entities impacted by the problem in form of a JSON array. * {ImpactedEntity}: The entity impacted by the problem or X impacted entities. * {PID}: The ID of the reported problem. * {ProblemDetailsHTML}: All problem event details, including root cause, as an HTML-formatted string. * {ProblemDetailsJSON}: All problem event details, including root cause, as a JSON object. * {ProblemDetailsMarkdown}: All problem event details, including root cause, as a Markdown-formatted string. * {ProblemDetailsText}: All problem event details, including root cause, as a text-formatted string. * {ProblemID}: The display number of the reported problem. * {ProblemImpact}: The impact level of the problem. Possible values are APPLICATION, SERVICE, and INFRASTRUCTURE. * {ProblemSeverity}: The severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, and CUSTOM_ALERT. * {ProblemTitle}: A short description of the problem. * {ProblemURL}: The URL of the problem within Dynatrace. * {State}: The state of the problem. Possible values are OPEN and RESOLVED. * {Tags}: The list of tags that are defined for all impacted entities, separated by commas
profile This property is required. string
The ID of the associated alerting profile
url This property is required. string
The URL of the WebHook endpoint
headers XmattersNotificationHeaders
A list of the additional HTTP headers
insecure boolean
Accept any, including self-signed and invalid, SSL certificate (true) or only trusted (false) certificates
legacyId string
The ID of these settings when referred to from resources requiring the REST API V1 keys
name string
The name of the notification configuration
active This property is required. bool
The configuration is enabled (true) or disabled (false)
payload This property is required. str
The content of the notification message. You can use the following placeholders: * {ImpactedEntities}: Details about the entities impacted by the problem in form of a JSON array. * {ImpactedEntity}: The entity impacted by the problem or X impacted entities. * {PID}: The ID of the reported problem. * {ProblemDetailsHTML}: All problem event details, including root cause, as an HTML-formatted string. * {ProblemDetailsJSON}: All problem event details, including root cause, as a JSON object. * {ProblemDetailsMarkdown}: All problem event details, including root cause, as a Markdown-formatted string. * {ProblemDetailsText}: All problem event details, including root cause, as a text-formatted string. * {ProblemID}: The display number of the reported problem. * {ProblemImpact}: The impact level of the problem. Possible values are APPLICATION, SERVICE, and INFRASTRUCTURE. * {ProblemSeverity}: The severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, and CUSTOM_ALERT. * {ProblemTitle}: A short description of the problem. * {ProblemURL}: The URL of the problem within Dynatrace. * {State}: The state of the problem. Possible values are OPEN and RESOLVED. * {Tags}: The list of tags that are defined for all impacted entities, separated by commas
profile This property is required. str
The ID of the associated alerting profile
url This property is required. str
The URL of the WebHook endpoint
headers XmattersNotificationHeadersArgs
A list of the additional HTTP headers
insecure bool
Accept any, including self-signed and invalid, SSL certificate (true) or only trusted (false) certificates
legacy_id str
The ID of these settings when referred to from resources requiring the REST API V1 keys
name str
The name of the notification configuration
active This property is required. Boolean
The configuration is enabled (true) or disabled (false)
payload This property is required. String
The content of the notification message. You can use the following placeholders: * {ImpactedEntities}: Details about the entities impacted by the problem in form of a JSON array. * {ImpactedEntity}: The entity impacted by the problem or X impacted entities. * {PID}: The ID of the reported problem. * {ProblemDetailsHTML}: All problem event details, including root cause, as an HTML-formatted string. * {ProblemDetailsJSON}: All problem event details, including root cause, as a JSON object. * {ProblemDetailsMarkdown}: All problem event details, including root cause, as a Markdown-formatted string. * {ProblemDetailsText}: All problem event details, including root cause, as a text-formatted string. * {ProblemID}: The display number of the reported problem. * {ProblemImpact}: The impact level of the problem. Possible values are APPLICATION, SERVICE, and INFRASTRUCTURE. * {ProblemSeverity}: The severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, and CUSTOM_ALERT. * {ProblemTitle}: A short description of the problem. * {ProblemURL}: The URL of the problem within Dynatrace. * {State}: The state of the problem. Possible values are OPEN and RESOLVED. * {Tags}: The list of tags that are defined for all impacted entities, separated by commas
profile This property is required. String
The ID of the associated alerting profile
url This property is required. String
The URL of the WebHook endpoint
headers Property Map
A list of the additional HTTP headers
insecure Boolean
Accept any, including self-signed and invalid, SSL certificate (true) or only trusted (false) certificates
legacyId String
The ID of these settings when referred to from resources requiring the REST API V1 keys
name String
The name of the notification configuration

Outputs

All input properties are implicitly available as output properties. Additionally, the XmattersNotification 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 XmattersNotification Resource

Get an existing XmattersNotification 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?: XmattersNotificationState, opts?: CustomResourceOptions): XmattersNotification
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        active: Optional[bool] = None,
        headers: Optional[XmattersNotificationHeadersArgs] = None,
        insecure: Optional[bool] = None,
        legacy_id: Optional[str] = None,
        name: Optional[str] = None,
        payload: Optional[str] = None,
        profile: Optional[str] = None,
        url: Optional[str] = None) -> XmattersNotification
func GetXmattersNotification(ctx *Context, name string, id IDInput, state *XmattersNotificationState, opts ...ResourceOption) (*XmattersNotification, error)
public static XmattersNotification Get(string name, Input<string> id, XmattersNotificationState? state, CustomResourceOptions? opts = null)
public static XmattersNotification get(String name, Output<String> id, XmattersNotificationState state, CustomResourceOptions options)
resources:  _:    type: dynatrace:XmattersNotification    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Active bool
The configuration is enabled (true) or disabled (false)
Headers Pulumiverse.Dynatrace.Inputs.XmattersNotificationHeaders
A list of the additional HTTP headers
Insecure bool
Accept any, including self-signed and invalid, SSL certificate (true) or only trusted (false) certificates
LegacyId string
The ID of these settings when referred to from resources requiring the REST API V1 keys
Name string
The name of the notification configuration
Payload string
The content of the notification message. You can use the following placeholders: * {ImpactedEntities}: Details about the entities impacted by the problem in form of a JSON array. * {ImpactedEntity}: The entity impacted by the problem or X impacted entities. * {PID}: The ID of the reported problem. * {ProblemDetailsHTML}: All problem event details, including root cause, as an HTML-formatted string. * {ProblemDetailsJSON}: All problem event details, including root cause, as a JSON object. * {ProblemDetailsMarkdown}: All problem event details, including root cause, as a Markdown-formatted string. * {ProblemDetailsText}: All problem event details, including root cause, as a text-formatted string. * {ProblemID}: The display number of the reported problem. * {ProblemImpact}: The impact level of the problem. Possible values are APPLICATION, SERVICE, and INFRASTRUCTURE. * {ProblemSeverity}: The severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, and CUSTOM_ALERT. * {ProblemTitle}: A short description of the problem. * {ProblemURL}: The URL of the problem within Dynatrace. * {State}: The state of the problem. Possible values are OPEN and RESOLVED. * {Tags}: The list of tags that are defined for all impacted entities, separated by commas
Profile string
The ID of the associated alerting profile
Url string
The URL of the WebHook endpoint
Active bool
The configuration is enabled (true) or disabled (false)
Headers XmattersNotificationHeadersArgs
A list of the additional HTTP headers
Insecure bool
Accept any, including self-signed and invalid, SSL certificate (true) or only trusted (false) certificates
LegacyId string
The ID of these settings when referred to from resources requiring the REST API V1 keys
Name string
The name of the notification configuration
Payload string
The content of the notification message. You can use the following placeholders: * {ImpactedEntities}: Details about the entities impacted by the problem in form of a JSON array. * {ImpactedEntity}: The entity impacted by the problem or X impacted entities. * {PID}: The ID of the reported problem. * {ProblemDetailsHTML}: All problem event details, including root cause, as an HTML-formatted string. * {ProblemDetailsJSON}: All problem event details, including root cause, as a JSON object. * {ProblemDetailsMarkdown}: All problem event details, including root cause, as a Markdown-formatted string. * {ProblemDetailsText}: All problem event details, including root cause, as a text-formatted string. * {ProblemID}: The display number of the reported problem. * {ProblemImpact}: The impact level of the problem. Possible values are APPLICATION, SERVICE, and INFRASTRUCTURE. * {ProblemSeverity}: The severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, and CUSTOM_ALERT. * {ProblemTitle}: A short description of the problem. * {ProblemURL}: The URL of the problem within Dynatrace. * {State}: The state of the problem. Possible values are OPEN and RESOLVED. * {Tags}: The list of tags that are defined for all impacted entities, separated by commas
Profile string
The ID of the associated alerting profile
Url string
The URL of the WebHook endpoint
active Boolean
The configuration is enabled (true) or disabled (false)
headers XmattersNotificationHeaders
A list of the additional HTTP headers
insecure Boolean
Accept any, including self-signed and invalid, SSL certificate (true) or only trusted (false) certificates
legacyId String
The ID of these settings when referred to from resources requiring the REST API V1 keys
name String
The name of the notification configuration
payload String
The content of the notification message. You can use the following placeholders: * {ImpactedEntities}: Details about the entities impacted by the problem in form of a JSON array. * {ImpactedEntity}: The entity impacted by the problem or X impacted entities. * {PID}: The ID of the reported problem. * {ProblemDetailsHTML}: All problem event details, including root cause, as an HTML-formatted string. * {ProblemDetailsJSON}: All problem event details, including root cause, as a JSON object. * {ProblemDetailsMarkdown}: All problem event details, including root cause, as a Markdown-formatted string. * {ProblemDetailsText}: All problem event details, including root cause, as a text-formatted string. * {ProblemID}: The display number of the reported problem. * {ProblemImpact}: The impact level of the problem. Possible values are APPLICATION, SERVICE, and INFRASTRUCTURE. * {ProblemSeverity}: The severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, and CUSTOM_ALERT. * {ProblemTitle}: A short description of the problem. * {ProblemURL}: The URL of the problem within Dynatrace. * {State}: The state of the problem. Possible values are OPEN and RESOLVED. * {Tags}: The list of tags that are defined for all impacted entities, separated by commas
profile String
The ID of the associated alerting profile
url String
The URL of the WebHook endpoint
active boolean
The configuration is enabled (true) or disabled (false)
headers XmattersNotificationHeaders
A list of the additional HTTP headers
insecure boolean
Accept any, including self-signed and invalid, SSL certificate (true) or only trusted (false) certificates
legacyId string
The ID of these settings when referred to from resources requiring the REST API V1 keys
name string
The name of the notification configuration
payload string
The content of the notification message. You can use the following placeholders: * {ImpactedEntities}: Details about the entities impacted by the problem in form of a JSON array. * {ImpactedEntity}: The entity impacted by the problem or X impacted entities. * {PID}: The ID of the reported problem. * {ProblemDetailsHTML}: All problem event details, including root cause, as an HTML-formatted string. * {ProblemDetailsJSON}: All problem event details, including root cause, as a JSON object. * {ProblemDetailsMarkdown}: All problem event details, including root cause, as a Markdown-formatted string. * {ProblemDetailsText}: All problem event details, including root cause, as a text-formatted string. * {ProblemID}: The display number of the reported problem. * {ProblemImpact}: The impact level of the problem. Possible values are APPLICATION, SERVICE, and INFRASTRUCTURE. * {ProblemSeverity}: The severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, and CUSTOM_ALERT. * {ProblemTitle}: A short description of the problem. * {ProblemURL}: The URL of the problem within Dynatrace. * {State}: The state of the problem. Possible values are OPEN and RESOLVED. * {Tags}: The list of tags that are defined for all impacted entities, separated by commas
profile string
The ID of the associated alerting profile
url string
The URL of the WebHook endpoint
active bool
The configuration is enabled (true) or disabled (false)
headers XmattersNotificationHeadersArgs
A list of the additional HTTP headers
insecure bool
Accept any, including self-signed and invalid, SSL certificate (true) or only trusted (false) certificates
legacy_id str
The ID of these settings when referred to from resources requiring the REST API V1 keys
name str
The name of the notification configuration
payload str
The content of the notification message. You can use the following placeholders: * {ImpactedEntities}: Details about the entities impacted by the problem in form of a JSON array. * {ImpactedEntity}: The entity impacted by the problem or X impacted entities. * {PID}: The ID of the reported problem. * {ProblemDetailsHTML}: All problem event details, including root cause, as an HTML-formatted string. * {ProblemDetailsJSON}: All problem event details, including root cause, as a JSON object. * {ProblemDetailsMarkdown}: All problem event details, including root cause, as a Markdown-formatted string. * {ProblemDetailsText}: All problem event details, including root cause, as a text-formatted string. * {ProblemID}: The display number of the reported problem. * {ProblemImpact}: The impact level of the problem. Possible values are APPLICATION, SERVICE, and INFRASTRUCTURE. * {ProblemSeverity}: The severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, and CUSTOM_ALERT. * {ProblemTitle}: A short description of the problem. * {ProblemURL}: The URL of the problem within Dynatrace. * {State}: The state of the problem. Possible values are OPEN and RESOLVED. * {Tags}: The list of tags that are defined for all impacted entities, separated by commas
profile str
The ID of the associated alerting profile
url str
The URL of the WebHook endpoint
active Boolean
The configuration is enabled (true) or disabled (false)
headers Property Map
A list of the additional HTTP headers
insecure Boolean
Accept any, including self-signed and invalid, SSL certificate (true) or only trusted (false) certificates
legacyId String
The ID of these settings when referred to from resources requiring the REST API V1 keys
name String
The name of the notification configuration
payload String
The content of the notification message. You can use the following placeholders: * {ImpactedEntities}: Details about the entities impacted by the problem in form of a JSON array. * {ImpactedEntity}: The entity impacted by the problem or X impacted entities. * {PID}: The ID of the reported problem. * {ProblemDetailsHTML}: All problem event details, including root cause, as an HTML-formatted string. * {ProblemDetailsJSON}: All problem event details, including root cause, as a JSON object. * {ProblemDetailsMarkdown}: All problem event details, including root cause, as a Markdown-formatted string. * {ProblemDetailsText}: All problem event details, including root cause, as a text-formatted string. * {ProblemID}: The display number of the reported problem. * {ProblemImpact}: The impact level of the problem. Possible values are APPLICATION, SERVICE, and INFRASTRUCTURE. * {ProblemSeverity}: The severity level of the problem. Possible values are AVAILABILITY, ERROR, PERFORMANCE, RESOURCE_CONTENTION, and CUSTOM_ALERT. * {ProblemTitle}: A short description of the problem. * {ProblemURL}: The URL of the problem within Dynatrace. * {State}: The state of the problem. Possible values are OPEN and RESOLVED. * {Tags}: The list of tags that are defined for all impacted entities, separated by commas
profile String
The ID of the associated alerting profile
url String
The URL of the WebHook endpoint

Supporting Types

XmattersNotificationHeaders
, XmattersNotificationHeadersArgs

Headers This property is required. List<Pulumiverse.Dynatrace.Inputs.XmattersNotificationHeadersHeader>
An additional HTTP Header to include when sending requests
Headers This property is required. []XmattersNotificationHeadersHeader
An additional HTTP Header to include when sending requests
headers This property is required. List<XmattersNotificationHeadersHeader>
An additional HTTP Header to include when sending requests
headers This property is required. XmattersNotificationHeadersHeader[]
An additional HTTP Header to include when sending requests
headers This property is required. Sequence[XmattersNotificationHeadersHeader]
An additional HTTP Header to include when sending requests
headers This property is required. List<Property Map>
An additional HTTP Header to include when sending requests

XmattersNotificationHeadersHeader
, XmattersNotificationHeadersHeaderArgs

Name This property is required. string
The name of the HTTP header
SecretValue string
The value of the HTTP header as a sensitive property. May contain an empty value. secret_value and value are mutually exclusive. Only one of those two is allowed to be specified.
Value string
The value of the HTTP header. May contain an empty value. secret_value and value are mutually exclusive. Only one of those two is allowed to be specified.
Name This property is required. string
The name of the HTTP header
SecretValue string
The value of the HTTP header as a sensitive property. May contain an empty value. secret_value and value are mutually exclusive. Only one of those two is allowed to be specified.
Value string
The value of the HTTP header. May contain an empty value. secret_value and value are mutually exclusive. Only one of those two is allowed to be specified.
name This property is required. String
The name of the HTTP header
secretValue String
The value of the HTTP header as a sensitive property. May contain an empty value. secret_value and value are mutually exclusive. Only one of those two is allowed to be specified.
value String
The value of the HTTP header. May contain an empty value. secret_value and value are mutually exclusive. Only one of those two is allowed to be specified.
name This property is required. string
The name of the HTTP header
secretValue string
The value of the HTTP header as a sensitive property. May contain an empty value. secret_value and value are mutually exclusive. Only one of those two is allowed to be specified.
value string
The value of the HTTP header. May contain an empty value. secret_value and value are mutually exclusive. Only one of those two is allowed to be specified.
name This property is required. str
The name of the HTTP header
secret_value str
The value of the HTTP header as a sensitive property. May contain an empty value. secret_value and value are mutually exclusive. Only one of those two is allowed to be specified.
value str
The value of the HTTP header. May contain an empty value. secret_value and value are mutually exclusive. Only one of those two is allowed to be specified.
name This property is required. String
The name of the HTTP header
secretValue String
The value of the HTTP header as a sensitive property. May contain an empty value. secret_value and value are mutually exclusive. Only one of those two is allowed to be specified.
value String
The value of the HTTP header. May contain an empty value. secret_value and value are mutually exclusive. Only one of those two is allowed to be specified.

Package Details

Repository
dynatrace pulumiverse/pulumi-dynatrace
License
Apache-2.0
Notes
This Pulumi package is based on the dynatrace Terraform Provider.