![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.alertsmanagement.kotlin.outputs.ActionGroupsInformationResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.alertsmanagement.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* The Action Groups information, used by the alert rule.
* @property customEmailSubject An optional custom email subject to use in email notifications.
* @property customWebhookPayload An optional custom web-hook payload to use in web-hook notifications.
* @property groupIds The Action Group resource IDs.
*/
public data class ActionGroupsInformationResponse(
public val customEmailSubject: String? = null,
public val customWebhookPayload: String? = null,
public val groupIds: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.alertsmanagement.outputs.ActionGroupsInformationResponse): ActionGroupsInformationResponse = ActionGroupsInformationResponse(
customEmailSubject = javaType.customEmailSubject().map({ args0 -> args0 }).orElse(null),
customWebhookPayload = javaType.customWebhookPayload().map({ args0 -> args0 }).orElse(null),
groupIds = javaType.groupIds().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy