![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.authorization.kotlin.inputs.AccessReviewInstanceArgs.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.authorization.kotlin.inputs
import com.pulumi.azurenative.authorization.inputs.AccessReviewInstanceArgs.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.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Access Review Instance.
* @property backupReviewers This is the collection of backup reviewers.
* @property endDateTime The DateTime when the review instance is scheduled to end.
* @property reviewers This is the collection of reviewers.
* @property startDateTime The DateTime when the review instance is scheduled to be start.
*/
public data class AccessReviewInstanceArgs(
public val backupReviewers: Output>? = null,
public val endDateTime: Output? = null,
public val reviewers: Output>? = null,
public val startDateTime: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.authorization.inputs.AccessReviewInstanceArgs =
com.pulumi.azurenative.authorization.inputs.AccessReviewInstanceArgs.builder()
.backupReviewers(
backupReviewers?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.endDateTime(endDateTime?.applyValue({ args0 -> args0 }))
.reviewers(
reviewers?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.startDateTime(startDateTime?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AccessReviewInstanceArgs].
*/
@PulumiTagMarker
public class AccessReviewInstanceArgsBuilder internal constructor() {
private var backupReviewers: Output>? = null
private var endDateTime: Output? = null
private var reviewers: Output>? = null
private var startDateTime: Output? = null
/**
* @param value This is the collection of backup reviewers.
*/
@JvmName("rpindsokialldiky")
public suspend fun backupReviewers(`value`: Output>) {
this.backupReviewers = value
}
@JvmName("uaxrdeawyiaqfuhy")
public suspend fun backupReviewers(vararg values: Output) {
this.backupReviewers = Output.all(values.asList())
}
/**
* @param values This is the collection of backup reviewers.
*/
@JvmName("gkmimfcsjrgxmucb")
public suspend fun backupReviewers(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy