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

dynatrace.TrelloNotification

Explore with Pulumi AI

Create TrelloNotification Resource

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

Constructor syntax

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

@overload
def TrelloNotification(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       active: Optional[bool] = None,
                       application_key: Optional[str] = None,
                       board_id: Optional[str] = None,
                       description: Optional[str] = None,
                       list_id: Optional[str] = None,
                       profile: Optional[str] = None,
                       resolved_list_id: Optional[str] = None,
                       text: Optional[str] = None,
                       authorization_token: Optional[str] = None,
                       legacy_id: Optional[str] = None,
                       name: Optional[str] = None)
func NewTrelloNotification(ctx *Context, name string, args TrelloNotificationArgs, opts ...ResourceOption) (*TrelloNotification, error)
public TrelloNotification(string name, TrelloNotificationArgs args, CustomResourceOptions? opts = null)
public TrelloNotification(String name, TrelloNotificationArgs args)
public TrelloNotification(String name, TrelloNotificationArgs args, CustomResourceOptions options)
type: dynatrace:TrelloNotification
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. TrelloNotificationArgs
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. TrelloNotificationArgs
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. TrelloNotificationArgs
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. TrelloNotificationArgs
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. TrelloNotificationArgs
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 trelloNotificationResource = new Dynatrace.TrelloNotification("trelloNotificationResource", new()
{
    Active = false,
    ApplicationKey = "string",
    BoardId = "string",
    Description = "string",
    ListId = "string",
    Profile = "string",
    ResolvedListId = "string",
    Text = "string",
    AuthorizationToken = "string",
    LegacyId = "string",
    Name = "string",
});
Copy
example, err := dynatrace.NewTrelloNotification(ctx, "trelloNotificationResource", &dynatrace.TrelloNotificationArgs{
	Active:             pulumi.Bool(false),
	ApplicationKey:     pulumi.String("string"),
	BoardId:            pulumi.String("string"),
	Description:        pulumi.String("string"),
	ListId:             pulumi.String("string"),
	Profile:            pulumi.String("string"),
	ResolvedListId:     pulumi.String("string"),
	Text:               pulumi.String("string"),
	AuthorizationToken: pulumi.String("string"),
	LegacyId:           pulumi.String("string"),
	Name:               pulumi.String("string"),
})
Copy
var trelloNotificationResource = new TrelloNotification("trelloNotificationResource", TrelloNotificationArgs.builder()
    .active(false)
    .applicationKey("string")
    .boardId("string")
    .description("string")
    .listId("string")
    .profile("string")
    .resolvedListId("string")
    .text("string")
    .authorizationToken("string")
    .legacyId("string")
    .name("string")
    .build());
Copy
trello_notification_resource = dynatrace.TrelloNotification("trelloNotificationResource",
    active=False,
    application_key="string",
    board_id="string",
    description="string",
    list_id="string",
    profile="string",
    resolved_list_id="string",
    text="string",
    authorization_token="string",
    legacy_id="string",
    name="string")
Copy
const trelloNotificationResource = new dynatrace.TrelloNotification("trelloNotificationResource", {
    active: false,
    applicationKey: "string",
    boardId: "string",
    description: "string",
    listId: "string",
    profile: "string",
    resolvedListId: "string",
    text: "string",
    authorizationToken: "string",
    legacyId: "string",
    name: "string",
});
Copy
type: dynatrace:TrelloNotification
properties:
    active: false
    applicationKey: string
    authorizationToken: string
    boardId: string
    description: string
    legacyId: string
    listId: string
    name: string
    profile: string
    resolvedListId: string
    text: string
Copy

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

Active This property is required. bool
The configuration is enabled (true) or disabled (false)
ApplicationKey This property is required. string
The application key for the Trello account
BoardId This property is required. string
The Trello board to which the card should be assigned
Description This property is required. string
The description of the Trello card. You can use same placeholders as in card text
ListId This property is required. string
The Trello list to which the card should be assigned
Profile This property is required. string
The ID of the associated alerting profile
ResolvedListId This property is required. string
The Trello list to which the card of the resolved problem should be assigned
Text This property is required. string
The text of the generated Trello card. You can use the following placeholders: * {ImpactedEntity}: The entity impacted by the problem or X impacted entities. * {PID}: The ID of the reported problem. * {ProblemDetailsMarkdown}: All problem event details, including root cause, as a Markdown-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
AuthorizationToken string
The application token for the Trello account
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)
ApplicationKey This property is required. string
The application key for the Trello account
BoardId This property is required. string
The Trello board to which the card should be assigned
Description This property is required. string
The description of the Trello card. You can use same placeholders as in card text
ListId This property is required. string
The Trello list to which the card should be assigned
Profile This property is required. string
The ID of the associated alerting profile
ResolvedListId This property is required. string
The Trello list to which the card of the resolved problem should be assigned
Text This property is required. string
The text of the generated Trello card. You can use the following placeholders: * {ImpactedEntity}: The entity impacted by the problem or X impacted entities. * {PID}: The ID of the reported problem. * {ProblemDetailsMarkdown}: All problem event details, including root cause, as a Markdown-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
AuthorizationToken string
The application token for the Trello account
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)
applicationKey This property is required. String
The application key for the Trello account
boardId This property is required. String
The Trello board to which the card should be assigned
description This property is required. String
The description of the Trello card. You can use same placeholders as in card text
listId This property is required. String
The Trello list to which the card should be assigned
profile This property is required. String
The ID of the associated alerting profile
resolvedListId This property is required. String
The Trello list to which the card of the resolved problem should be assigned
text This property is required. String
The text of the generated Trello card. You can use the following placeholders: * {ImpactedEntity}: The entity impacted by the problem or X impacted entities. * {PID}: The ID of the reported problem. * {ProblemDetailsMarkdown}: All problem event details, including root cause, as a Markdown-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
authorizationToken String
The application token for the Trello account
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)
applicationKey This property is required. string
The application key for the Trello account
boardId This property is required. string
The Trello board to which the card should be assigned
description This property is required. string
The description of the Trello card. You can use same placeholders as in card text
listId This property is required. string
The Trello list to which the card should be assigned
profile This property is required. string
The ID of the associated alerting profile
resolvedListId This property is required. string
The Trello list to which the card of the resolved problem should be assigned
text This property is required. string
The text of the generated Trello card. You can use the following placeholders: * {ImpactedEntity}: The entity impacted by the problem or X impacted entities. * {PID}: The ID of the reported problem. * {ProblemDetailsMarkdown}: All problem event details, including root cause, as a Markdown-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
authorizationToken string
The application token for the Trello account
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)
application_key This property is required. str
The application key for the Trello account
board_id This property is required. str
The Trello board to which the card should be assigned
description This property is required. str
The description of the Trello card. You can use same placeholders as in card text
list_id This property is required. str
The Trello list to which the card should be assigned
profile This property is required. str
The ID of the associated alerting profile
resolved_list_id This property is required. str
The Trello list to which the card of the resolved problem should be assigned
text This property is required. str
The text of the generated Trello card. You can use the following placeholders: * {ImpactedEntity}: The entity impacted by the problem or X impacted entities. * {PID}: The ID of the reported problem. * {ProblemDetailsMarkdown}: All problem event details, including root cause, as a Markdown-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
authorization_token str
The application token for the Trello account
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)
applicationKey This property is required. String
The application key for the Trello account
boardId This property is required. String
The Trello board to which the card should be assigned
description This property is required. String
The description of the Trello card. You can use same placeholders as in card text
listId This property is required. String
The Trello list to which the card should be assigned
profile This property is required. String
The ID of the associated alerting profile
resolvedListId This property is required. String
The Trello list to which the card of the resolved problem should be assigned
text This property is required. String
The text of the generated Trello card. You can use the following placeholders: * {ImpactedEntity}: The entity impacted by the problem or X impacted entities. * {PID}: The ID of the reported problem. * {ProblemDetailsMarkdown}: All problem event details, including root cause, as a Markdown-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
authorizationToken String
The application token for the Trello account
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 TrelloNotification 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 TrelloNotification Resource

Get an existing TrelloNotification 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?: TrelloNotificationState, opts?: CustomResourceOptions): TrelloNotification
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        active: Optional[bool] = None,
        application_key: Optional[str] = None,
        authorization_token: Optional[str] = None,
        board_id: Optional[str] = None,
        description: Optional[str] = None,
        legacy_id: Optional[str] = None,
        list_id: Optional[str] = None,
        name: Optional[str] = None,
        profile: Optional[str] = None,
        resolved_list_id: Optional[str] = None,
        text: Optional[str] = None) -> TrelloNotification
func GetTrelloNotification(ctx *Context, name string, id IDInput, state *TrelloNotificationState, opts ...ResourceOption) (*TrelloNotification, error)
public static TrelloNotification Get(string name, Input<string> id, TrelloNotificationState? state, CustomResourceOptions? opts = null)
public static TrelloNotification get(String name, Output<String> id, TrelloNotificationState state, CustomResourceOptions options)
resources:  _:    type: dynatrace:TrelloNotification    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)
ApplicationKey string
The application key for the Trello account
AuthorizationToken string
The application token for the Trello account
BoardId string
The Trello board to which the card should be assigned
Description string
The description of the Trello card. You can use same placeholders as in card text
LegacyId string
The ID of these settings when referred to from resources requiring the REST API V1 keys
ListId string
The Trello list to which the card should be assigned
Name string
The name of the notification configuration
Profile string
The ID of the associated alerting profile
ResolvedListId string
The Trello list to which the card of the resolved problem should be assigned
Text string
The text of the generated Trello card. You can use the following placeholders: * {ImpactedEntity}: The entity impacted by the problem or X impacted entities. * {PID}: The ID of the reported problem. * {ProblemDetailsMarkdown}: All problem event details, including root cause, as a Markdown-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
Active bool
The configuration is enabled (true) or disabled (false)
ApplicationKey string
The application key for the Trello account
AuthorizationToken string
The application token for the Trello account
BoardId string
The Trello board to which the card should be assigned
Description string
The description of the Trello card. You can use same placeholders as in card text
LegacyId string
The ID of these settings when referred to from resources requiring the REST API V1 keys
ListId string
The Trello list to which the card should be assigned
Name string
The name of the notification configuration
Profile string
The ID of the associated alerting profile
ResolvedListId string
The Trello list to which the card of the resolved problem should be assigned
Text string
The text of the generated Trello card. You can use the following placeholders: * {ImpactedEntity}: The entity impacted by the problem or X impacted entities. * {PID}: The ID of the reported problem. * {ProblemDetailsMarkdown}: All problem event details, including root cause, as a Markdown-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
active Boolean
The configuration is enabled (true) or disabled (false)
applicationKey String
The application key for the Trello account
authorizationToken String
The application token for the Trello account
boardId String
The Trello board to which the card should be assigned
description String
The description of the Trello card. You can use same placeholders as in card text
legacyId String
The ID of these settings when referred to from resources requiring the REST API V1 keys
listId String
The Trello list to which the card should be assigned
name String
The name of the notification configuration
profile String
The ID of the associated alerting profile
resolvedListId String
The Trello list to which the card of the resolved problem should be assigned
text String
The text of the generated Trello card. You can use the following placeholders: * {ImpactedEntity}: The entity impacted by the problem or X impacted entities. * {PID}: The ID of the reported problem. * {ProblemDetailsMarkdown}: All problem event details, including root cause, as a Markdown-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
active boolean
The configuration is enabled (true) or disabled (false)
applicationKey string
The application key for the Trello account
authorizationToken string
The application token for the Trello account
boardId string
The Trello board to which the card should be assigned
description string
The description of the Trello card. You can use same placeholders as in card text
legacyId string
The ID of these settings when referred to from resources requiring the REST API V1 keys
listId string
The Trello list to which the card should be assigned
name string
The name of the notification configuration
profile string
The ID of the associated alerting profile
resolvedListId string
The Trello list to which the card of the resolved problem should be assigned
text string
The text of the generated Trello card. You can use the following placeholders: * {ImpactedEntity}: The entity impacted by the problem or X impacted entities. * {PID}: The ID of the reported problem. * {ProblemDetailsMarkdown}: All problem event details, including root cause, as a Markdown-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
active bool
The configuration is enabled (true) or disabled (false)
application_key str
The application key for the Trello account
authorization_token str
The application token for the Trello account
board_id str
The Trello board to which the card should be assigned
description str
The description of the Trello card. You can use same placeholders as in card text
legacy_id str
The ID of these settings when referred to from resources requiring the REST API V1 keys
list_id str
The Trello list to which the card should be assigned
name str
The name of the notification configuration
profile str
The ID of the associated alerting profile
resolved_list_id str
The Trello list to which the card of the resolved problem should be assigned
text str
The text of the generated Trello card. You can use the following placeholders: * {ImpactedEntity}: The entity impacted by the problem or X impacted entities. * {PID}: The ID of the reported problem. * {ProblemDetailsMarkdown}: All problem event details, including root cause, as a Markdown-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
active Boolean
The configuration is enabled (true) or disabled (false)
applicationKey String
The application key for the Trello account
authorizationToken String
The application token for the Trello account
boardId String
The Trello board to which the card should be assigned
description String
The description of the Trello card. You can use same placeholders as in card text
legacyId String
The ID of these settings when referred to from resources requiring the REST API V1 keys
listId String
The Trello list to which the card should be assigned
name String
The name of the notification configuration
profile String
The ID of the associated alerting profile
resolvedListId String
The Trello list to which the card of the resolved problem should be assigned
text String
The text of the generated Trello card. You can use the following placeholders: * {ImpactedEntity}: The entity impacted by the problem or X impacted entities. * {PID}: The ID of the reported problem. * {ProblemDetailsMarkdown}: All problem event details, including root cause, as a Markdown-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

Package Details

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