
com.pulumi.azure.pim.kotlin.inputs.RoleManagementPolicyNotificationRulesEligibleActivationsArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.pim.kotlin.inputs
import com.pulumi.azure.pim.inputs.RoleManagementPolicyNotificationRulesEligibleActivationsArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
*
* @property adminNotifications Admin notification settings
* @property approverNotifications Approver notification settings
* @property assigneeNotifications Assignee notification settings
*/
public data class RoleManagementPolicyNotificationRulesEligibleActivationsArgs(
public val adminNotifications: Output? =
null,
public val approverNotifications: Output? =
null,
public val assigneeNotifications: Output? =
null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azure.pim.inputs.RoleManagementPolicyNotificationRulesEligibleActivationsArgs =
com.pulumi.azure.pim.inputs.RoleManagementPolicyNotificationRulesEligibleActivationsArgs.builder()
.adminNotifications(
adminNotifications?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.approverNotifications(
approverNotifications?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.assigneeNotifications(
assigneeNotifications?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [RoleManagementPolicyNotificationRulesEligibleActivationsArgs].
*/
@PulumiTagMarker
public class RoleManagementPolicyNotificationRulesEligibleActivationsArgsBuilder internal constructor() {
private var adminNotifications:
Output? = null
private var approverNotifications:
Output? =
null
private var assigneeNotifications:
Output? =
null
/**
* @param value Admin notification settings
*/
@JvmName("ruwpwpfbvaxalikv")
public suspend fun adminNotifications(`value`: Output) {
this.adminNotifications = value
}
/**
* @param value Approver notification settings
*/
@JvmName("kmefjotalpxjtmki")
public suspend fun approverNotifications(`value`: Output) {
this.approverNotifications = value
}
/**
* @param value Assignee notification settings
*/
@JvmName("fwuxxntjiqccicqe")
public suspend fun assigneeNotifications(`value`: Output) {
this.assigneeNotifications = value
}
/**
* @param value Admin notification settings
*/
@JvmName("vucxmgtrrkywactr")
public suspend fun adminNotifications(`value`: RoleManagementPolicyNotificationRulesEligibleActivationsAdminNotificationsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.adminNotifications = mapped
}
/**
* @param argument Admin notification settings
*/
@JvmName("vpdpdaeohblvrkca")
public suspend fun adminNotifications(argument: suspend RoleManagementPolicyNotificationRulesEligibleActivationsAdminNotificationsArgsBuilder.() -> Unit) {
val toBeMapped =
RoleManagementPolicyNotificationRulesEligibleActivationsAdminNotificationsArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.adminNotifications = mapped
}
/**
* @param value Approver notification settings
*/
@JvmName("inwsqawowglibfie")
public suspend fun approverNotifications(`value`: RoleManagementPolicyNotificationRulesEligibleActivationsApproverNotificationsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.approverNotifications = mapped
}
/**
* @param argument Approver notification settings
*/
@JvmName("xgqwhjjnkocalvpf")
public suspend fun approverNotifications(argument: suspend RoleManagementPolicyNotificationRulesEligibleActivationsApproverNotificationsArgsBuilder.() -> Unit) {
val toBeMapped =
RoleManagementPolicyNotificationRulesEligibleActivationsApproverNotificationsArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.approverNotifications = mapped
}
/**
* @param value Assignee notification settings
*/
@JvmName("htvkqldilacbmnqq")
public suspend fun assigneeNotifications(`value`: RoleManagementPolicyNotificationRulesEligibleActivationsAssigneeNotificationsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.assigneeNotifications = mapped
}
/**
* @param argument Assignee notification settings
*/
@JvmName("xbbmduyowbwxgkpg")
public suspend fun assigneeNotifications(argument: suspend RoleManagementPolicyNotificationRulesEligibleActivationsAssigneeNotificationsArgsBuilder.() -> Unit) {
val toBeMapped =
RoleManagementPolicyNotificationRulesEligibleActivationsAssigneeNotificationsArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.assigneeNotifications = mapped
}
internal fun build(): RoleManagementPolicyNotificationRulesEligibleActivationsArgs =
RoleManagementPolicyNotificationRulesEligibleActivationsArgs(
adminNotifications = adminNotifications,
approverNotifications = approverNotifications,
assigneeNotifications = assigneeNotifications,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy