com.pulumi.azure.monitoring.kotlin.outputs.ActionGroupItsmReceiver.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.monitoring.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property connectionId The unique connection identifier of the ITSM connection.
* @property name The name of the ITSM receiver.
* @property region The region of the workspace.
* > **NOTE** `ticket_configuration` should be JSON blob with `PayloadRevision` and `WorkItemType` keys (e.g., `ticket_configuration="{\"PayloadRevision\":0,\"WorkItemType\":\"Incident\"}"`), and `ticket_configuration="{}"` will return an error, see more at this [REST API issue](https://github.com/Azure/azure-rest-api-specs/issues/20488)
* @property ticketConfiguration A JSON blob for the configurations of the ITSM action. CreateMultipleWorkItems option will be part of this blob as well.
* @property workspaceId The Azure Log Analytics workspace ID where this connection is defined. Format is `|`, for example `00000000-0000-0000-0000-000000000000|00000000-0000-0000-0000-000000000000`.
*/
public data class ActionGroupItsmReceiver(
public val connectionId: String,
public val name: String,
public val region: String,
public val ticketConfiguration: String,
public val workspaceId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.monitoring.outputs.ActionGroupItsmReceiver):
ActionGroupItsmReceiver = ActionGroupItsmReceiver(
connectionId = javaType.connectionId(),
name = javaType.name(),
region = javaType.region(),
ticketConfiguration = javaType.ticketConfiguration(),
workspaceId = javaType.workspaceId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy