
com.pulumi.azure.sentinel.kotlin.outputs.AuthomationRuleActionPlaybook.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.sentinel.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property logicAppId The ID of the Logic App that defines the playbook's logic.
* @property order The execution order of this action.
* @property tenantId The ID of the Tenant that owns the playbook.
*/
public data class AuthomationRuleActionPlaybook(
public val logicAppId: String,
public val order: Int,
public val tenantId: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.sentinel.outputs.AuthomationRuleActionPlaybook): AuthomationRuleActionPlaybook = AuthomationRuleActionPlaybook(
logicAppId = javaType.logicAppId(),
order = javaType.order(),
tenantId = javaType.tenantId().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy