com.pulumi.azure.monitoring.kotlin.outputs.GetActionGroupItsmReceiver.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 Specifies the name of the Action Group.
* @property region The region of the workspace.
* @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.
*/
public data class GetActionGroupItsmReceiver(
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.GetActionGroupItsmReceiver):
GetActionGroupItsmReceiver = GetActionGroupItsmReceiver(
connectionId = javaType.connectionId(),
name = javaType.name(),
region = javaType.region(),
ticketConfiguration = javaType.ticketConfiguration(),
workspaceId = javaType.workspaceId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy