com.pulumi.gcp.projects.kotlin.inputs.IAMAuditConfigAuditLogConfigArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.projects.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.projects.inputs.IAMAuditConfigAuditLogConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property exemptedMembers Identities that do not cause logging for this type of permission. The format is the same as that for `members`.
* @property logType Permission type for which logging is to be configured. Must be one of `DATA_READ`, `DATA_WRITE`, or `ADMIN_READ`.
*/
public data class IAMAuditConfigAuditLogConfigArgs(
public val exemptedMembers: Output>? = null,
public val logType: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.projects.inputs.IAMAuditConfigAuditLogConfigArgs =
com.pulumi.gcp.projects.inputs.IAMAuditConfigAuditLogConfigArgs.builder()
.exemptedMembers(exemptedMembers?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.logType(logType.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [IAMAuditConfigAuditLogConfigArgs].
*/
@PulumiTagMarker
public class IAMAuditConfigAuditLogConfigArgsBuilder internal constructor() {
private var exemptedMembers: Output>? = null
private var logType: Output? = null
/**
* @param value Identities that do not cause logging for this type of permission. The format is the same as that for `members`.
*/
@JvmName("yqqelomeopmyeojg")
public suspend fun exemptedMembers(`value`: Output>) {
this.exemptedMembers = value
}
@JvmName("mxnjdwprkagpfcyo")
public suspend fun exemptedMembers(vararg values: Output) {
this.exemptedMembers = Output.all(values.asList())
}
/**
* @param values Identities that do not cause logging for this type of permission. The format is the same as that for `members`.
*/
@JvmName("akxmymnlvbymeoaw")
public suspend fun exemptedMembers(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy